You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We noticed that the Library was to able to parse ¥ and £ in NumberFormats (but € works for example).
We found a workaround which is to simply add quotes: "¥" will work.
Example: (€* #,##0);(€* (#,##0);(€* "-");(@) will be parsed and format the value as expected. (¥* #,##0);(¥* (#,##0);(¥* "-");(@) causes error. ("¥"* #,##0);("¥"* (#,##0);("¥"* "-");(@_) will be parsed and format the value as expected.
Cheers,
Romain
The text was updated successfully, but these errors were encountered:
Thanks for this. Indeed Excel (2016) accepts any non-token literals in number formats, and so should this library. Surprised this wasn't caught before, although if you input that number format manually in Excel and save, and then inspect the XML it has been escaped:
Hi @andersnm,
Thank you for this work, really helpful!
We noticed that the Library was to able to parse ¥ and £ in NumberFormats (but € works for example).
We found a workaround which is to simply add quotes: "¥" will work.
Example:
(€* #,##0);(€* (#,##0);(€* "-");(@) will be parsed and format the value as expected.
(¥* #,##0);(¥* (#,##0);(¥* "-");(@) causes error.
("¥"* #,##0);("¥"* (#,##0);("¥"* "-");(@_) will be parsed and format the value as expected.
Cheers,
Romain
The text was updated successfully, but these errors were encountered: