Questions tagged [js-xlsx]

JavaScript Spreadsheet Parser and Writer

Parser and writer for various spreadsheet formats. Pure-JS cleanroom implementation from official specifications, related documents, and test files. Emphasis on parsing and writing robustness, cross-format feature compatibility with a unified JS representation, and ES3/ES5 browser compatibility back to IE6.

Resources

137 questions
0
votes
3 answers

Decimal places when number format in excel

Now decimal place is 2, I want to change it depending on variable, is it possible? cell.v = parseFloat(cell.v), cell.t = 'n'; cell.z = XLSX.SSF._table[2]; // 0.00 -> want to change to 0.000
karaxuna
  • 26,752
  • 13
  • 82
  • 117
-1
votes
2 answers

Wrong data format in exported Excel

I ask help here about a trouble with SheetJS js-xlsx that recently seems not to be supported actively. I already put an issue. The point is that I want to use non-English data format (dates and numbers). When I export to XLSX file, the library does…
1 2 3
9
10