Formula

Cell.Formula property

الحصول على صيغة ملفCell .

public string Formula { get; set; }

ملاحظات

تبدأ سلسلة الصيغة دائمًا بعلامة التساوي (=). ويرجى دائمًا استخدام الفاصلة (،) كمحدد للمعلمات ، مثل “= SUM (A1، E1، H2)” .

أمثلة

[C#]

Workbook excel = new Workbook();
Cells cells = excel.Worksheets[0].Cells;
cells["B6"].Formula = "=SUM(B2:B5, E1) + sheet1!A1";

[Visual Basic]

Dim excel As Workbook =  New Workbook() 
Dim cells As Cells =  excel.Worksheets(0).Cells 
cells("B6").Formula = "=SUM(B2:B5, E1) + sheet1!A1"

أنظر أيضا