Berechnung von Excel 2016 MINIFS- und MAXIFS-Funktionen
Contents
[
Hide
]
Mögliche Nutzungsszenarien
Microsoft Excel 2016 unterstützt MINIFS- und MAXIFS-Funktionen. Diese Funktionen werden in Excel 2013 oder früheren Versionen nicht unterstützt. Aspose.Cells unterstützt auch die Berechnung dieser Funktion. Der folgende Screenshot veranschaulicht die Verwendung dieser Funktionen. Bitte lesen Sie die roten Kommentare im Screenshot, um zu erfahren, wie diese Funktionen funktionieren.
Berechnung von Excel 2016 MINIFS- und MAXIFS-Funktionen
Der folgende Beispielcode lädt dieExcel-Beispieldatei und ruft die anWorkbook.CalculateFormula() Methode zur Durchführung der Formelberechnung über Aspose.Cells und speichert anschließend die Ergebnisse imAusgang 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); |