Excel 2016 MINIFS ve MAXIFS işlevlerinin hesaplanması
Contents
[
Hide
]
Olası Kullanım Senaryoları
Microsoft Excel 2016, MINIFS ve MAXIFS işlevlerini destekler. Bu işlevler, Excel 2013 veya önceki sürümlerde desteklenmez. Aspose.Cells, bu işlevin hesaplanmasını da destekler. Aşağıdaki ekran görüntüsü, bu işlevlerin kullanımını göstermektedir. Bu işlevlerin nasıl çalıştığını öğrenmek için lütfen ekran görüntüsü içindeki kırmızı yorumları okuyun.
Excel 2016 MINIFS ve MAXIFS işlevlerinin hesaplanması
Aşağıdaki örnek kod,örnek excel dosyası ve çağırırWorkbook.CalculateFormula() Aspose.Cells aracılığıyla formül hesaplamasını gerçekleştirme yöntemi ve ardından sonuçlarıçıkış PDF.
This file contains hidden or 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 | |
// Load your source workbook containing MINIFS and MAXIFS functions | |
Workbook workbook = new Workbook(sourceDir + "sampleMINIFSAndMAXIFS.xlsx"); | |
// Perform Aspose.Cells formula calculation | |
workbook.CalculateFormula(); | |
// Save the calculations result in pdf format | |
PdfSaveOptions options = new PdfSaveOptions(); | |
options.OnePagePerSheet = true; | |
workbook.Save(outputDir + "outputMINIFSAndMAXIFS.pdf", options); |