添加枢轴连接
Contents
[
Hide
]
可能的使用场景
如果要在 Excel 中关联切片器和数据透视表,则需要右键单击切片器并选择“报告连接…”项。在选项列表中,您可以对复选框进行操作。同样,如果您想以编程方式使用 Aspose.Cells API 关联切片器和数据透视表,请使用Slicer.AddPivotConnection(数据透视表数据透视表)方法。它将关联切片器和数据透视表。
关联切片器和数据透视表
下面的示例代码加载示例 Excel 文件包含一个现有的切片器。它访问切片器,然后关联切片器和数据透视表。最后,它将工作簿另存为输出Excel文件.
示例代码
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Load sample Excel file containing slicer. | |
Workbook wb = new Workbook("add-pivot-connection .xlsx"); | |
// Access first worksheet. | |
Worksheet ws = wb.Worksheets[0]; | |
// Access the first PivotTable inside the PivotTable collection. | |
PivotTable pivottable = ws.PivotTables[0]; | |
// Access the first slicer inside the slicer collection. | |
Slicer slicer = ws.Slicers[0]; | |
//Adds PivotTable connection. | |
slicer.AddPivotConnection(pivottable); | |
wb.Save("add-pivot-connection-out.xlsx"); |