Reading an xls file stored in the specified path
Read up to 10000 rows x 1000 columns from the xls file stored in the specified path and get back the content of a specific folder
Both xls (Excel 97 format) and xlsx are supported.
Example:
Important note: values stored in each javascript object can be accessed as: object.get("attributeName")
Important note: do not try to read a large amount of rows from a spreadsheet; xls files are not a good format to save data, since it consumes a lot of memory; it would ALWAYS be better to read a csv file instead.
Last updated