GM
Geetha M
Syncfusion Team
February 23, 2010 08:41 AM UTC
Hi Arnold,
Thank you for your interest in Syncfusion products.
It is possible to add a new worksheet to the existing workbook. Please refer to the code snippet given below.
IWorksheet destSheet = application.ActiveWorkbook.Worksheets.Create();
However, it you have the worksheet created and want to add, please check if the following code would work for you.
IWorksheet destSheet = application.ActiveWorkbook.Worksheets.AddCopy(sourceSheet);
Please try this and let me know if you have any questions.
Regards,
Geetha