Say a table column name has formula characters such as parenthesis such as Column (1). Thus the subtotal function for it in the Table's total row would look like this: =SUBTOTAL(109,TableName[Column (1)]). Unfortunately this function, while valid in Excel, is returning #NAME when calculated by EPPlus. This is because EPPlus is seeing the parenthesis and treating TableName[Column (1)] as a formula rather than a table reference when parsing the formula.
↧