Skip to content
Advertisement

Reading excel file into array using javascript

I’m trying to read an excel file and create a multidimensional array in javascript with it. The excel file will look like:

JavaScript

I need it to create an array that looks like:

JavaScript

So far, I’ve been able to bring up a file selection window, and I believe it’s reading the file, I just think it might not be putting the data into the array correctly. This is what I have so far:

JavaScript

Any help would be greatly appreciated.

Advertisement

Answer

Not sure what you’re using to parse the Excel, is it IgniteUI ? For what it’s worth, the free (community edition) of SheetJS, js-xlsx provides a few functions that produce exactly the output you needed, given the spreadsheet you provided.

The docs are a bit messy, but they are complete, the most interesting sections for this use-case are: Browser file upload form element under Parsing workbooks and XLSX.utils.sheet_to_json. You can run a test with the type of spreadsheet you provided in the code sample below:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement