Hi,
I use 7.0.1.0 Aspose.Cells / .Net
I want to assemble multiple documents into same file.
I want to keep the style and formula for all the worksheets.
For that i use:
public static void MergeExcelDocuments(IList excelDocumentsIn, string fileOut)
{
Workbook mainWB = new Workbook(FileFormatType.Xlsx);
mainWB.Worksheets.Clear();
foreach (string docPath in excelDocumentsIn)
mainWB.Combine(new Workbook(docPath));
mainWB.Save(fileOut);
}
And the style Tables (2010 standard table style) change (see files attachments)
Thanks !