Обновление и вычисление сводной таблицы с вычисляемыми элементами
Contents
[
Hide
]
Aspose.Cells for JavaScript через C++ теперь поддерживает обновление и вычисление сводных таблиц с расчетными элементами. Пожалуйста, используйте PivotTable.refreshData и PivotTable.calculateData как обычно для выполнения этой функции.
Обновление и вычисление сводной таблицы с вычисляемыми элементами
Следующий пример кода загружает исходный файл excel, содержащий сводную таблицу с тремя расчетными элементами, такими как “add”, “div”, “div2”. Мы сначала изменяем значение ячейки D2 на 20, затем обновляем и вычисляем сводную таблицу с помощью API Aspose.Cells for JavaScript через C++ и сохраняем книгу в формате PDF. Результаты в выходном PDF показывают, что Aspose.Cells for JavaScript успешно обновил и вычислил сводную таблицу с расчетными элементами. Вы можете проверить это вручную, поставив значение 20 в ячейку D2 и обновив сводную таблицу с помощью комбинации клавиш Alt+F5 или кнопки обновления сводной таблицы.
<!DOCTYPE html>
<html>
<head>
<title>Refresh and Calculate Pivot Table Items</title>
</head>
<body>
<h1>Refresh and Calculate Pivot Table Items</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 } = 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 result = document.getElementById('result');
const downloadLink = document.getElementById('downloadLink');
if (!fileInput.files.length) {
result.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 from the uploaded file
const workbook = new Workbook(new Uint8Array(arrayBuffer));
// Accessing the first worksheet in the Excel file
const sheet = workbook.worksheets.get(0);
// Change the value of cell D2
const cell = sheet.cells.get("D2");
cell.value = 20;
// Refresh and calculate all the pivot tables inside this sheet
sheet.refreshPivotTables();
// Save the workbook as PDF and provide a download link
const outputData = workbook.save(SaveFormat.Pdf);
const blob = new Blob([outputData]);
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = 'RefreshAndCalculateItems_out.pdf';
downloadLink.style.display = 'block';
downloadLink.textContent = 'Download PDF File';
result.innerHTML = '<p style="color: green;">Pivot tables refreshed and calculated. Click the download link to get the PDF.</p>';
});
</script>
</html>