حساب الإجماليات الفرعية
Contents
[
Hide
]
Aspose.Cells - حساب الإجماليات الفرعية
يمكنك إنشاء الإجماليات الفرعية تلقائيًا لأي قيم متكررة في جدول البيانات. توفر Aspose.Cells ميزات واجهة برمجة التطبيقات التي تساعدك في إضافة الإجماليات الفرعية لجداول البيانات بشكل برمجي.
C#
//Instantiating a Workbook object
Workbook workbook = new Workbook("../../data/test.xlsx");
//Get the Cells collection in the first worksheet
Cells cells = workbook.Worksheets[0].Cells;
//Create a cellarea i.e.., B3:C19
CellArea ca = new CellArea();
ca.StartRow = 2;
ca.StartColumn = 1;
ca.EndRow = 18;
ca.EndColumn = 2;
//Apply subtotal, the consolidation function is Sum and it will applied to
//Second column (C) in the list
cells.Subtotal(ca, 0, ConsolidationFunction.Sum, new int[] { 1 });
//Save the excel file
workbook.Save("AsposeTotal.xls");
تحميل رمز التشغيل
قم بتنزيل حساب الإجماليات الفرعية من أي من المواقع الاجتماعية المذكورة أدناه:
لمزيد من التفاصيل، قم بزيارة إنشاء المجاميع.