Formula

Cell.Formula property

Ottiene o imposta una formula diCell .

public string Formula { get; set; }

Osservazioni

Una stringa di formula inizia sempre con un segno di uguale (=). E usa sempre virgola(,) come delimitatore di parametri, come “=SUM(A1, E1, H2)”.

Esempi

[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"

Guarda anche