データテーブルの配列式の計算
Contents
[
Hide
]
Microsoft Excel で、[データ] > [What-If 分析] > [データ テーブル…] を使用してデータ テーブルを作成できます。Aspose.Cells では、データ テーブルの配列式を計算できるようになりました。使ってくださいWorkbook.CalculateFormula()あらゆる種類の数式を計算するための通常の方法です。
次のサンプル コードでは、ソースエクセルファイル .セル B1 の値を 100 に変更すると、次の図に示すように、黄色で塗りつぶされたデータ テーブルの値が 120 になります。サンプル コードは、出力 PDF.
生成に使用するサンプルコードは次のとおりです。出力 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-.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"); |