设置数据透视表选项 对空单元格显示

在Microsoft Excel中设置数据透视表选项

要在Microsoft Excel中查找并设置此选项:

  1. 选择数据透视表,右键单击。
  2. 选择数据透视表选项
  3. 选择布局和格式选项卡。
  4. 选择对空单元格显示选项并指定字符串。

** 使用Aspose.Cells for Node.js via C++设置数据透视表选项**

Aspose.Cells for Node.js via C++提供用于设置"空单元格显示"数据透视表选项的PivotTable.setDisplayNullStringPivotTable.setNullString属性。

const AsposeCells = require("aspose.cells.node");
//For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
//The path to the documents directory.
var dataDir = RunExamples.GetDataDir(".");
var wb = new AsposeCells.Workbook(dataDir + "input.xlsx");
var pt = wb.getWorksheets().get(0).getPivotTables().get(0);
//Indicating if or not display the empty cell value
pt.setDisplayNullString(true);
//Indicating the null string
pt.setNullString("null");
pt.calculateData();
pt.setRefreshDataOnOpeningFile(false);
wb.save(dataDir + "output_out.xlsx");

相关文章