I am trying to read an excel file that has two columns 'Start Time' and 'End Time', and the data is in the form '8:00 AM','10:15 AM', etc.
The value in the field is 8:30 AM
When I try to read the excel file using xlsx
module with no options specified
var workbook = XLSX.readFile('sample-excel.xlsx');
I get this.
When I try this
var workbook = XLSX.readFile('sample-excel.xlsx',{cellDates:true});
I get this.
Please help, I want to store the text as it is that is json = {time:'8:30 AM'}