How do you format currency in exceljs?
All I've found is this from their docs...which I have no clue how to type so I pasted it, but it doesn't seem to work
// Set Column 3 to Currency Format
ws.getColumn(3).numFmt = '�#,##0;[Red]-�#,##0';
How do you format currency in exceljs?
All I've found is this from their docs...which I have no clue how to type so I pasted it, but it doesn't seem to work
// Set Column 3 to Currency Format
ws.getColumn(3).numFmt = '�#,##0;[Red]-�#,##0';
An alternate to 343_Guilty_Spark's answer which is shorter and will be red for negative values:
const numFmtStr = '$#,##0.00_);[Red]($#,##0.00)'
cell.numFmt = numFmtStr
This will keep all the qualities of it, but be less complicated for Excel.
Just took a little bit of tinkering with.
The #'s are optional digits. If you don't care about negative numbers being red you can leave it as
$#,##0.00