sheetjs
sheetjs copied to clipboard
Format ending with '-' gives "Unsupported Format"
Some countries format negative numbers with the '-' on the right. Specifying this as a format gives an Unsupported Format error:
Format: #0;#0-
Value: -3.14
Expected: 3-
Actual: Error: unsupported format |0-|
To fix this, don't include + or - in the numeric format unless proceeded by an "E".
Excel autocorrects the format by escaping the slash. In Excel 2019, entering that format in Excel generates the format #0;#0\-. That format does work.