Crea affettatrice in tabella Excel
Contents
[
Hide
]
Possibili scenari di utilizzo
Un’affettatrice viene utilizzata per filtrare rapidamente i dati. Può essere utilizzato per filtrare i dati sia in una tabella che in una tabella pivot. Microsoft Excel consente di creare un’affettatrice selezionando una tabella o una tabella pivot e quindi facendo clic sull’iconaInserisci > Affettatrice. Aspose.Cells permette anche di creare affettatrici utilizzando ilWorksheet.Slicers.Add() metodo.
Crea affettatrice in tabella Excel
Vedere il seguente codice di esempio. Carica ilesempio di file Excel che contiene una tabella. Quindi crea l’affettatrice in base alla prima colonna. Infine, salva la cartella di lavoro inuscita XLSX formato.
Codice d’esempio
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-Java | |
// Load sample Excel file containing a table. | |
Workbook workbook = new Workbook(sourceDir + "sampleCreateSlicerToExcelTable.xlsx"); | |
// Access first worksheet. | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Access first table inside the worksheet. | |
ListObject table = worksheet.getListObjects().get(0); | |
// Add slicer | |
int idx = worksheet.getSlicers().add(table, 0, "H5"); | |
// Save the workbook in output XLSX format. | |
workbook.save(outputDir + "outputCreateSlicerToExcelTable.xlsx", SaveFormat.XLSX); |