I have browsed almost all the previous threads, but still cannot get this working.I am trying to add a new sheet to an existing workbook. My code works,but it keeps on addin
If you want to add a sheet to an existing spreadsheet, just go ahead and add the new sheet to the file instead of copying your load
object and trying to add the new sheet to it.
from openpyxl import load_workbook
wb2 = load_workbook('template.xlsx')
wb2.create_sheet('sid1')
wb2.save('template.xlsx')