There is issue when using regional settings that use ',' as a separator for decimal places instead of "."
Example from NPOI xml file:
<pageMargins footer="0,3" header="0,3" bottom="0,75" top="0,75" right="0,7" left="0,7"/>
This produces error when trying to open the workbook:
"Excel found unreadable content.... "
".InvariantCulture" might fix this issue.
Example from NPOI xml file:
<pageMargins footer="0,3" header="0,3" bottom="0,75" top="0,75" right="0,7" left="0,7"/>
This produces error when trying to open the workbook:
"Excel found unreadable content.... "
".InvariantCulture" might fix this issue.