Hi,
I am evaluating Aspose.Cells for .NET to calculate multiple Excel workbooks. I have following questions to determine whether or not Aspose.Cells is correct choice for me.
1) I created Excel workbook with simple pivot table. When source data is updated, I want to update Pivot table data. Following is code I am using to refresh Pivot table data using Aspose.Cells. But Pivot table data is not refreshing. Does Aspose.Cells support refreshing Pivot table data and how?
Worksheet sheet2 = workbook.Worksheets.First(w => w.Name == “Sheet2”);
PivotTable pivotTable = sheet2.PivotTables[0];
pivotTable.RefreshDataFlag = true;
pivotTable.RefreshData();
pivotTable.RefreshDataFlag = false;
2) I have multiple Excel workbooks and they reference each other's data. Is there way in Aspose.Cells to calculate all Workbooks collectively such way that Aspose.Cells handles data dependency?
Thanks for considering my questions! Please let me know if you need more clarification.
--Amit