You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to get data from excel files onto our database, and repeatedly running into this issue where my program refuses to access other sheets in the excel document.
For example:
works_sheet = xlsx.sheet(0)
chapter_sheet = xlsx.sheet(1)
When using works_sheet, things are fine. But when trying to use chapter_sheet later in the code, it takes the data off of sheet 0 and doesn't access anything on the sheet it's supposed to (1).
Any tips?
The text was updated successfully, but these errors were encountered:
I am trying to get data from excel files onto our database, and repeatedly running into this issue where my program refuses to access other sheets in the excel document.
For example:
works_sheet = xlsx.sheet(0)
chapter_sheet = xlsx.sheet(1)
When using works_sheet, things are fine. But when trying to use chapter_sheet later in the code, it takes the data off of sheet 0 and doesn't access anything on the sheet it's supposed to (1).
Any tips?
The text was updated successfully, but these errors were encountered: