Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, encryption, and a focus on keeping existing workbook features and styles in tact.
MIT License
956
stars
183
forks
source link
Wrong parsing - getting for each sheet the data of the one sheet after it #348
I parse a lot of files with this excellent library and all works well. Now, I have one file that I get wrong data from parsing, seems I get for each sheet the data of the one sheet after it.
E.g. for sheet1.cell('A1').value() I get the data that exists in sheet2 cell A1.
Maybe something wrong with my file but I can't point it. Any idea?
I parse a lot of files with this excellent library and all works well. Now, I have one file that I get wrong data from parsing, seems I get for each sheet the data of the one sheet after it. E.g. for
sheet1.cell('A1').value()
I get the data that exists insheet2
cellA1
. Maybe something wrong with my file but I can't point it. Any idea?Thanks!