حساب وظائف Excel 2016 MINIFS و MAXIFS

سيناريوهات الاستخدام الممكنة

Microsoft يدعم Excel 2016 وظائف MINIFS و MAXIFS. هذه الوظائف غير معتمدة في Excel 2013 أو الإصدارات السابقة. يدعم Aspose.Cells أيضًا حساب هذه الوظيفة. توضح لقطة الشاشة التالية استخدام هذه الوظائف. يرجى قراءة التعليقات الحمراء داخل لقطة الشاشة لمعرفة كيفية عمل هذه الوظائف.

ما يجب القيام به: image_بديل_نص

حساب وظائف Excel 2016 MINIFS و MAXIFS

يقوم نموذج التعليمات البرمجية التالي بتحميل ملفنموذج ملف اكسل ويدعوWorkbook.calculateFormula () لإجراء حساب الصيغة عبر Aspose.Cells ثم يحفظ النتائج فيالإخراج PDF.

عينة من الرموز

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getSharedDataDir(CalculationofExcelMINIFSandMAXIFSfunctions.class) + "articles/";
// Load your source workbook containing MINIFS and MAXIFS functions
Workbook wb = new Workbook(dataDir + "sample_MINIFS_MAXIFS.xlsx");
// Perform Aspose.Cells formula calculation
wb.calculateFormula();
// Save the calculations result in pdf format
PdfSaveOptions opts = new PdfSaveOptions();
opts.setOnePagePerSheet(true);
wb.save(dataDir + "CalculationofExcel_out.pdf", opts);