Veri Tablolarının Dizi Formülünün Hesaplanması
Contents
[
Hide
]
Veri > What-If Analizi > Veri Tablosu…‘nu kullanarak Microsoft Excel’de Veri Tablosu oluşturabilirsiniz… Aspose.Cells artık bir veri tablosunun dizi formülünü hesaplamanıza izin veriyor. Lütfen kullanWorkbook.CalculateFormula() her türlü formülü hesaplamak için normaldir.
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.
İşte oluşturmak için kullanılan örnek kodçıkış PDF dankaynak excel dosyası. Daha fazla bilgi için lütfen yorumları okuyunuz.
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"); |