كيفية إنشاء جدول محوري في Excel باستخدام C#

يوجه هذا البرنامج التعليمي الموجز حول ** كيفية إنشاء جدول محوري في Excel باستخدام C# **. ** لإنشاء جدول محوري برمجيًا C# ** يتم توفير كود ووصف تفصيلي بحيث تحصل في النهاية على ملف XLSX (أو XLS) يحتوي على جدول محوري دون استخدام أي ثالث آخر أداة طرف. يحتوي أيضًا على خطوات ترشدك إلى إضافة حقول مختلفة إلى مناطق مختلفة في الجدول المحوري.

خطوات إنشاء جدول محوري في C#

  1. قم بتهيئة البيئة لإضافة Aspose.Cells for .NET من مدير الحزم NuGet لإنشاء جدول محوري
  2. قم بإنشاء أو تحميل workbook موجود به بيانات للجدول المحوري
  3. احصل على حق الوصول إلى الهدف worksheet حيث سيتم إضافة الجدول المحوري
  4. أنشئ جدولاً محوريًا واحصل على مثيله لمزيد من المعالجة
  5. تكوين الجدول المحوري الجديد وإضافة حقول مختلفة إلى العمود والصف ومنطقة البيانات
  6. احفظ المصنف الناتج الذي يحتوي على جدول محوري فيه

بعد إنشاء بيئة إنشاء الجدول المحوري * C# Excel * موصوفة هنا بحيث نقوم بإنشاء مصنف جديد هنا يحتوي على البيانات المشفرة ، ولكن يمكنك تحميل ملف Excel موجود يحتوي أيضًا على بيانات مستهدفة فيه. في الخطوات التالية ، سيصف أيضًا عملية إنشاء جدول pivotTable ثم تكوينه. في الخطوات الأخيرة ، تتم إضافة حقول مختلفة إلى مناطق مختلفة في الجدول المحوري مثل العمود والصف والبيانات.

كود لإنشاء جدول محوري في Excel باستخدام C#

using System.IO;
using System.Text;
using Aspose.Cells;
namespace CreatePivotTableInExcelUsingCSharp
{
class Program
{
static void Main(string[] args) // Main function to set width of cell in CSharp
{
// Instantiate the license to remove trial version watermark in the output Excel file
Aspose.Cells.License licForCells= new Aspose.Cells.License();
licForCells.SetLicense("Aspose.Cells.lic");
// Set the hard-coded data. You may use an existing Excel file also if required
byte[] SrcDataByteArray = Encoding.ASCII.GetBytes(
$@"City,Product,Sales
Paris,Cream,2300
Paris,Lotion,1600
Tunis,Cream,900
Tunis,Lotion,1400
Tunis,Cream,3090
Tunis,Lotion,6000
Paris,Cream,4320" );
// Create a memory stream from the source data
MemoryStream dataStream = new MemoryStream( SrcDataByteArray );
// Create LoadOptions class object to load the comma-separated data given above
LoadOptions loadOptions = new LoadOptions(LoadFormat.Csv);
// Instantiate a workbook class object having above mentioned data
Workbook wbCSV = new Workbook(dataStream, loadOptions);
// Get access to the first worksheet in the collection
Worksheet targetSheet = wbCSV.Worksheets[0];
// Get collection of pivot tables in the target worksheet
Aspose.Cells.Pivot.PivotTableCollection pvTablesCollection = targetSheet.PivotTables;
// Get pivot table index after adding a new pivot table by provding source data range and destination cell
int iNewPivotTable = pvTablesCollection.Add("=A1:C8", "F3", "MyPivotTable");
// Get the instance of newly added pivot table for further processing
Aspose.Cells.Pivot.PivotTable newPivotTable = pvTablesCollection[iNewPivotTable];
// Hide the grand total for rows in the output Excel file
newPivotTable.RowGrand = false;
// Add the first field to the column area
newPivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType.Column, 0);
// Add the second field to the row area
newPivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType.Row, 1);
// Add the third field to the data area
newPivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType.Data, 2);
// Saving the output Excel file with pivot table
wbCSV.Save("OutputPivotTable.xlsx");
System.Console.WriteLine("Done");
}
}
}

يوضح نموذج التعليمات البرمجية هذا كيفية إنشاء * جدول محوري في C# * من خلال توفير نطاق البيانات ، وخلية الوجهة حيث يتم وضع الجدول المحوري جنبًا إلى جنب مع اسم الجدول المحوري. تحتوي فئة pivotTable على وظيفة AddFieldToArea () تُستخدم لسحب الحقول المختلفة إلى مناطق مختلفة باستخدام pivotFieldType مثل العمود أو الصف أو البيانات جنبًا إلى جنب مع رقم الحقل في نطاق البيانات المحدد. يمكنك أيضًا استخدام صفحة pivotFieldType أخرى إذا لزم الأمر.

في هذه المقالة ، تعلمنا * إضافة جدول محوري Excel في C# *. إذا كنت تريد تعلم كيفية تصدير البيانات في قائمة إلى Excel ، فراجع المقالة على كيفية تصدير بيانات القائمة إلى Excel في C#.

 عربي