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

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

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

todo:image_alt_text

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

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

// 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);