Beräkning av Excel 2016 MINIFS och MAXIFS funktioner
Contents
[
Hide
]
Möjliga användningsscenarier
Microsoft Excel 2016 stöder MINIFS- och MAXIFS-funktioner. Dessa funktioner stöds inte i Excel 2013 eller tidigare versioner. Aspose.Cells stöder också beräkningen av dessa funktioner. Följande skärmdump illustrerar användningen av dessa funktioner. Läs de röda kommentarerna inuti skärmdumpen för att veta hur dessa funktioner fungerar.
Beräkning av Excel 2016 MINIFS och MAXIFS funktioner
Följande exempelkod laddarexempel på excel-fil och ringer tillWorkbook.CalculateFormula() metod för att utföra formelberäkningen via Aspose.Cells och sparar sedan resultaten iutgång 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 | |
// 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); |