数据表数组公式计算

Contents
[ ]

在下面的示例代码中,我们使用了源文件.如果将单元格 B1 的值更改为 100,则用黄色填充的数据表的值将变为 120,如下图所示。示例代码生成输出 PDF.

待办事项:图片_替代_文本

待办事项:图片_替代_文本

这是用于生成的示例代码输出 PDF来自源文件.请阅读评论以获取更多信息。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create workbook from source excel file
Workbook workbook = new Workbook(dataDir + "DataTable.xlsx");
// Access first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// When you will put 100 in B1, then all Data Table values formatted as Yellow will become 120
worksheet.Cells["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_out.pdf");