为数据透视表创建切片器

可能的使用场景

切片器用于快速过滤数据。它可用于过滤表格或数据透视表中的数据。 Microsoft Excel 允许您通过选择表格或数据透视表然后单击插入 > 切片器Aspose.Cells 还允许您使用[工作表.getSlicers().add()](https://reference.aspose.com/cells/java/com.aspose.cells/slicercollection#add(com.aspose.cells.PivotTable,%20int,%20int,%20com.aspose.cells.PivotField)) 方法。

为数据透视表创建切片器

请参阅以下示例代码。它加载了示例 Excel 文件包含数据透视表。然后它根据第一个基本数据透视字段创建切片器。最后,它将工作簿保存在输出 XLSX输出 XLSB格式。以下屏幕截图显示了 Aspose.Cells 在输出 Excel 文件中创建的切片器。

待办事项:图片_替代_文本

示例代码

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// Load sample Excel file containing pivot table.
Workbook wb = new Workbook(srcDir + "sampleCreateSlicerToPivotTable.xlsx");
// Access first worksheet.
Worksheet ws = wb.getWorksheets().get(0);
// Access first pivot table inside the worksheet.
PivotTable pt = ws.getPivotTables().get(0);
// Add slicer relating to pivot table with first base field at cell B22.
int idx = ws.getSlicers().add(pt, "B22", pt.getBaseFields().get(0));
// Access the newly added slicer from slicer collection.
Slicer slicer = ws.getSlicers().get(idx);
// Save the workbook in output XLSX format.
wb.save(outDir + "outputCreateSlicerToPivotTable.xlsx", SaveFormat.XLSX);
// Save the workbook in output XLSB format.
wb.save(outDir + "outputCreateSlicerToPivotTable.xlsb", SaveFormat.XLSB);