I want to create an Excel workbook containing only one sheet but I am getting 2 rather than 3 -- which I thought was the default. So I thought I would just delete the extra page. Here is the code I am using:
Workbook wb = xlApp.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);
wb.Worksheets[2].Delete();
However this throws a bad index error at runtime.
EDIT: Here is the relevant code:
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
Workbook wb = xlApp.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);
Worksheet ws = (Worksheet)wb.Worksheets[1];
Just in case I also tried:
Worksheet ws = (Worksheet)wb.Worksheets[0];
but it throws an error.
Any advice is appreciated.
Regards.