Adding Excel Sheets to End of Workbook

excel, python, python-2.7, win32com

Solution

Try using this by adding `Before = None`:

add = Book.Sheets.Add(Before = None , After = Book.Sheets(book.Sheets.count))
add.Name = "Data1"

Problem

I am trying to add excel worksheets to the end of a workbook, reserving the first sheet for a summary. ``` import win32com.client Excel = win32com.client.DispatchEx('Excel.Application') Book = Excel.Workbooks.Add() Excel.Visible = True Book.Worksheets(3).Delete() Book.Worksheets(2).Delete() Sheet = Book.Worksheets(1) Sheet.Name = "Summary" Book.Worksheets.Add(After=Sheet) Sheet = Book.Worksheets(2) Sheet.Name = "Data1" ``` This code adds the new sheet to the left, despite using `After=Sheet`, and when I modify the sheet named "Data1", it overwrites the sheet named "Summary". This is similar to this problem: Adding sheets to end of workbook in Excel (normal method not working?) but the given solutions don't work for me.

Original source

Related problems