I began to actively use the Tabulator library, which in turn uses the well-known Sheetjs library. But when uploading to Excel, I get a fractional separator in the form of a dot, but in our locale commas are used for this. For example, I get the following number from the database in the JSON table: 1234567.87654, but I need it to be 1234567,87654. In the table view of the tabulator and json, I can change the comma delimiter format, however, when saving to Excel via sheetjs, I get a text column instead of a numeric one. Please tell me how to separate the numbers with a comma when saving in Excel, so that the format of the numbers is separated by commas?
I tried "Column Calculations" in the tabulator - it's strange that if you do not change the default delimiter format, when unloading, the columns are delimited by a period, and the rows with total values are separated by a comma.
If you need to set the Number format at Excel level, this can be done by modifying the workbook with SheetJS methods during tabulator export using
documentProcessing
callback. Combined withaccessorDownload
option to convert the number to the format you need.You can loop thru tabulator data and set the format to each cell of the column you need, based on SheetJS number formats (https://docs.sheetjs.com/docs/csf/features/nf#currency).
Here is an example: https://jsfiddle.net/w2amk8dc/1/