数据表数组公式计算
Contents
[
Hide
]
您可以在 Microsoft Excel 中使用“数据”>“假设分析”>“数据表…”创建数据表。Aspose.Cells 现在允许您计算数据表的数组公式。请用工作簿.calculateFormula() 正常计算任何类型的公式。
数据表数组公式计算
在下面的示例代码中,我们使用了这个源文件也显示在下图中。
如果将B1单元格的值改为100,则用黄色填充的数据表的值将变为120。示例代码生成输出 PDF如图所示,它在数据表中显示 120 作为值。
这是用于生成的示例代码输出 PDF来自源文件.请阅读评论以获取更多信息。
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 | |
String dataDir = Utils.getDataDir(CalculationOfArrayFormula.class); | |
// Create workbook from source excel file | |
Workbook workbook = new Workbook(dataDir + "DataTable.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// When you will put 100 in B1, then all Data Table values formatted as Yellow will become 120 | |
worksheet.getCells().get("B1").putValue(100); | |
// Calculate formula, now it also calculates Data Table array formula | |
workbook.calculateFormula(); | |
// Save the workbook in pdf format | |
workbook.save(dataDir + "output.pdf"); |