Veri Tablolarının Dizi Formülünün Hesaplanması

Contents
[ ]

Aşağıdaki örnek kodda,kaynak excel dosyası . B1 hücresinin değerini 100 olarak değiştirirseniz aşağıdaki resimlerde görüldüğü gibi Sarı renk ile doldurulan Data Table değerleri 120 olacaktır. Örnek kod,çıkış PDF.

yapılacaklar:resim_alternatif_metin

yapılacaklar:resim_alternatif_metin

İşte oluşturmak için kullanılan örnek kodçıkış PDF dankaynak excel dosyası. Daha fazla bilgi için lütfen yorumları okuyunuz.

// 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");