Currently, I am trying to edit an existing excel file using xlwt. I do not want to edit directly on the excel, so I first make a copy.
new_wb = xlutils.copy(file_location)
From this copy, I used the xlwt module to write a new column into the newly copied excel file and save. However, I get an error when I try to copy:
ValueError: row index was 65536, not allowed by .xls format
I am a little confused because the file I duplicate is a xlsx file, not xls. I never use the xls format in my code.
Any guidance would be greatly appreciated.