Pivot Table Hide and Sort data
Contents
[
Hide
]
Pivot Table Hide and Sort data
Aspose.Cells for JavaScript via C++ supports hiding and sorting data in the pivot table. The following code snippet demonstrates this feature by sorting the Score column in descending order and then hiding the rows with a score less than 60.
<!DOCTYPE html>
<html>
<head>
<title>Aspose.Cells PivotTable Hide and Sort Example</title>
</head>
<body>
<h1>PivotTable Hide and Sort Example</h1>
<input type="file" id="fileInput" accept=".xls,.xlsx,.csv" />
<button id="runExample">Run Example</button>
<a id="downloadLink" style="display: none;">Download Result</a>
<div id="result"></div>
</body>
<script src="aspose.cells.js.min.js"></script>
<script type="text/javascript">
const { Workbook, SaveFormat, Utils } = AsposeCells;
AsposeCells.onReady({
license: "/lic/aspose.cells.enc",
fontPath: "/fonts/",
fontList: [
"arial.ttf",
"NotoSansSC-Regular.ttf"
]
}).then(() => {
console.log("Aspose.Cells initialized");
});
document.getElementById('runExample').addEventListener('click', async () => {
const fileInput = document.getElementById('fileInput');
const resultDiv = document.getElementById('result');
if (!fileInput.files.length) {
resultDiv.innerHTML = '<p style="color: red;">Please select an Excel file.</p>';
return;
}
const file = fileInput.files[0];
const arrayBuffer = await file.arrayBuffer();
// Instantiating a Workbook object using the uploaded file
const workbook = new Workbook(new Uint8Array(arrayBuffer));
// Accessing the first worksheet in the Excel file
const worksheet = workbook.worksheets.get(0);
// Accessing the first pivot table in the worksheet
const pivotTable = worksheet.pivotTables.get(0);
// Getting data body range and determining rows used
const dataBodyRange = pivotTable.dataBodyRange;
let currentRow = 3;
const rowsUsed = dataBodyRange.endRow;
// Sorting score in descending
const field = pivotTable.rowFields.get(0);
field.isAutoSort = true;
field.isAscendSort = false;
field.autoSortField = 0;
pivotTable.refreshData();
pivotTable.calculateData();
// Hiding rows with score less than 60
while (currentRow < rowsUsed) {
const cell = worksheet.cells.get(currentRow, 1);
const score = cell.floatValue;
if (score < 60) {
worksheet.cells.hideRow(currentRow);
}
currentRow = currentRow + 1;
}
pivotTable.refreshData();
pivotTable.calculateData();
// Saving the modified Excel file and providing download link
const outputData = workbook.save(SaveFormat.Xlsx);
const blob = new Blob([outputData]);
const downloadLink = document.getElementById('downloadLink');
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = 'PivotTableHideAndSort_out.xlsx';
downloadLink.style.display = 'block';
downloadLink.textContent = 'Download Modified Excel File';
resultDiv.innerHTML = '<p style="color: green;">Operation completed successfully! Click the download link to get the modified file.</p>';
});
</script>
</html>
The source and output excel files used in the code snippet are attached for reference.