-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Closed
Labels
Description
Hi!
There is a CSV file, which I try to read and it contains field with value
"Aprobil P 0.1%"
the short example of CSV:
"Country";"Product Family"
"Germany";"Aprobil P 0.1%"
conversion to workbook is the following:
var workbook = XLSX.read(csvData, {
type:'string',
dateNF: 'D-M-YYYY',
cellDates:true,
cellText:true,
cellNF: false,
raw:false});
after conversion I save the XLS, where value "Aprobil P 0.1%" is converted to a date 01.04.00
looking into the worksheet model and getting the certain cell, it contains:
{
t: 'd',
v: 'Sat Apr 01 2000 00:00:00 GMT+0300 (Eastern European Summer Time)',
z:undefined
}
is there any way to cover this case?
Could you pls assist, what to do.
Thanks in advance!