-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After using xlsxioread_sheet_open, cannot use xlsxioread_sheetlist_next to get the next sheet #128
Comments
I have 8 worksheets and can only get 2 worksheets, for some reason, using x64 binary file, version 0.2.35 |
@ReanRelay Can you share a .xlsx file with this issue so I can investigate? |
I have 5 sheets, but get only 1 sheets. any xlxs‘ files |
Please share a |
So, I had the same issue today while trying to load a .xlsx with 3 sheets using exactly the same code (while loop for all sheets and then while loop for all cells).
How I managed to make it work although I believe it's not the cleanest way:
Note: I did experiments on the same excel with the version of @xiaoyuantao (as this was my initial code version) and with the code that I am describing here and the workaround parsed correctly all the sheets, so I don't think that necessarily the problem is the .xlsx. Hope this helps! |
Can you attach the file and some minimal code so I can reproduce and debug? |
@brechtsanders Sure! The only dependencies that I have here besides STL is spdlog which can easily be removed if you just comment all the logging. Files: Hope that you can reproduce on your side! |
After using xlsxioread_sheet_open, cannot use xlsxioread_sheetlist_next to get the next sheet.
Here's my code. I want to go through all the sheets and print out the contents.
But the actual effect really only prints the contents of the first sheet
The text was updated successfully, but these errors were encountered: