ピボット接続を削除

考えられる使用シナリオ

Excel でスライサーとピボット テーブルの関連付けを解除する場合は、スライサーを右クリックして [レポート接続…] 項目を選択する必要があります。オプションリストでは、チェックボックスを操作できます。同様に、プログラムで Aspose.Cells API を使用してスライサーとピボット テーブルの関連付けを解除する場合は、Slicer.RemovePivotConnection(ピボットテーブル ピボット)方法。スライサーとピボット テーブルの関連付けを解除します。

スライサーとピボット テーブルの関連付けを解除する

次のサンプル コードは、サンプル Excel ファイル既存のスライサーが含まれています。スライサーにアクセスし、スライサーとピボット テーブルの関連付けを解除します。最後に、ワークブックを次のように保存します。出力エクセルファイル.

サンプルコード

// 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("remove-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];
//Remove PivotTable connection.
slicer.RemovePivotConnection(pivottable);
// Save the workbook in output XLSX format.
wb.Save("remove-pivot-connection-out.xlsx");