D Dan Oct 17, 2003 #1 I have a c# app that creates and Excel doc, I would like to know how to create new worksheets (tabs) in the excel doc using c#?
I have a c# app that creates and Excel doc, I would like to know how to create new worksheets (tabs) in the excel doc using c#?
N Nicholas Paldino [.NET/C# MVP] Oct 17, 2003 #2 Dan, On the Worksheets object exposed by the Workbook object (through the Worksheets property), you can call the Add method to add a new Worksheet. Hope this helps.
Dan, On the Worksheets object exposed by the Workbook object (through the Worksheets property), you can call the Add method to add a new Worksheet. Hope this helps.