العثور وتحديث جداول الدوران المدمجة أو الفرعية لجدول الدوران الأم

سيناريوهات الاستخدام المحتملة

في بعض الأحيان، يستخدم جدول دوران واحد جدول دوران آخر كمصدر بيانات، لذا يطلق عليه جدول دوران فرعي أو مدمج. يمكنك العثور على جداول الدوران الفرعية لجدول دوران أم باستخدام الطريقة PivotTable.getChildren().

العثور وتحديث جداول الدوران المدمجة أو الفرعية لجدول الدوران الأم

تحميل الشفرة العينية التالية ملف Excel عيني الذي يحتوي على ثلاثة جداول دوران. الجدولان الدورانان السفليان هما جداول دوران فرعية للجدول أعلاه كما هو موضح في هذه اللقطة. الشفرة تجد جداول الدوران الفرعية باستخدام الطريقة PivotTable.getChildren() ثم تقوم بتحديثها واحداً تلو الآخر.

todo:image_alt_text

الكود المثالي

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
//Load sample Excel file
Workbook wb = new Workbook("sampleFindAndRefreshNestedOrChildrenPivotTables.xlsx");
//Access first worksheet
Worksheet ws = wb.getWorksheets().get(0);
//Access third pivot table
PivotTable ptParent = ws.getPivotTables().get(2);
//Access the children of the parent pivot table
PivotTable[] ptChildren = ptParent.getChildren();
//Refresh all the children pivot table
int count = ptChildren.length;
for (int idx = 0; idx < count; idx++)
{
//Access the child pivot table
PivotTable ptChild = ptChildren[idx];
//Refresh the child pivot table
ptChild.refreshData();
ptChild.calculateData();
}