这个简短的教程描述了如何使用 Node.js 删除数据透视表。它提供了设置开发环境的说明、编程步骤列表以及可运行的示例代码,演示了如何使用 Node.js 删除 Excel 中的数据透视表。您还将了解决定删除与数据透视表链接的数据的选项。
使用 Node.js 删除数据透视表的步骤
- 设置环境以使用 Aspose.Cells for Node.js 通过 Java 删除数据透视表
- 加载包含数据和数据透视表的 workbook
- 访问存在数据透视表的目标工作表
- 使用 removeAt() 方法中的索引删除所需的数据透视表
- 使用 Node.js 删除数据透视表后保存生成的工作簿
上述步骤解释了如何使用 Node.js 删除数据透视表。第一步,加载目标工作簿并选择存在数据透视表的相应工作表。使用 PivotTableCollection 类中的removeAt() 方法,使用索引删除目标数据透视表。
使用 Node.js 删除数据透视表的代码
var aspose = aspose || {}; | |
aspose.cells = require("aspose.cells"); | |
//Set the license | |
new aspose.cells.License().setLicense("License.lic"); | |
// Load the Excel file | |
var wb = new aspose.cells.Workbook("PivotSample.xls"); | |
// Access the first worksheet | |
var ws = wb.getWorksheets().get(0); | |
// Remove the target pivot table | |
ws.getPivotTables().removeAt(0); | |
// Save the output | |
wb.save("result.xlsx"); | |
console.log("Pivot table deleted successfully"); |
此代码段演示如何使用 Node.js 在 Excel 中删除数据透视表。 PivotTableCollection 类包含多种使用索引或 PivotTale 名称删除数据透视表的方法。附加标志 keepData 可用于删除数据以及数据透视表。
本文教我们如何使用 Node.js 删除 Excel 中的数据透视表。如果您想了解如何删除 Excel 文件中的列,请参阅有关 如何使用 Node.js 删除 Excel 中的列 的文章。