HotXLS Docs

Formula property

Returns or sets the cell's Formula. Read/write Variant.

Syntax

property Formula: Variant;

Remarks

If the cell contains a constant, this property returns the constant.
If the cell contains a Formula, the Formula property returns the Formula as a string (including the equal sign).
If the range is a one- or two-dimensional range, you can set the Formula to a Variant Array of the same dimensions.
Similarly, the Formula property returns the Variant Array.
Setting the Formula for a multiple-cell range fills all cells in the range with the Formula.

HotXLS's Formula compiler use the semicolon sign instead of comma as the function argument separator.
book.Sheets[1].Cells[2,3].Formula := '=IF(A1>100;A1*B1;A1*B2)';

Example

This example sets the Formula of cell A2 and obtains the result of Formula into Val variable.

With Workbook.Sheets[1] do begin
  Cells[1,1].Value := 100;
  Cells[2,1].Formula := '=IF(A1>70;A1/2;A1)';
  Val := Cells[2,1].Value;  //Val = 50
end;
This example copies the Formulas from A1:F1 range to A2:F2 range.

With Workbook.Sheets[1] do begin
  Range['A2', 'F2'].Formula := Range['A1', 'F1'].Formula;
end;
This example is the same to previous.

With Workbook.Sheets[1].Range['A1', 'F1'] do
    Offset[1,0].Formula := Formula;