I have a question about exporting an HTML table as an xlsx file. I did some work and now I can export it as an xls, but I need to export it as an xlsx. Here is my jsFiddle: https://jsfiddle.net/272406sv/1/ Here is my HTML: Here is my JavaScript code: Answer You won’t be able to export it as XLSX without
Tag: xls
How to parse Excel (XLS) file in Javascript/HTML5
I am able to read Excel file via FileReader but it outputs text as well as weird characters with it. I need to read xls file row-wise, read data in every column and convert it to JSON. How to read xls file row by row? Answer Below Function converts the Excel sheet (XLSX format) data to JSON. you can add