Add a new sheet to a existing workbook in python

后端 未结 1 736
说谎
说谎 2020-12-09 19:49

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

相关标签:
1条回答
  • 2020-12-09 20:24

    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')
    
    0 讨论(0)
提交回复
热议问题