Hi
I am currently using Aspose.Cells version 7.0.3.2 for .Net with the attached file. The pivot table in the file contains some conditional formatting which you can see in the manage rules option.
My code moves the file to a new location before opening it via the aspose.cells.Save() function, but in doing so this appears to be making a mess of the conditional formatting on the pivot table in that the "applies to " in the rules looks completely incorrect.
My code is very simple:
string templatePath = @"C:\TEMP\4.5Test.xlsx";
string fileName = @"C:\TEMP2\CopiedVersion.xlsx";
Aspose.Cells.Workbook myWorkbook = new Workbook();
myWorkbook = new Aspose.Cells.Workbook(templatePath);
myWorkbook.Save(fileName, Aspose.Cells.SaveFormat.Xlsx);
Many Thanks