Cell.Formula Method
Inserts an = (Formula) field that contains the specified formula into a table cell.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Sub Formula ( _
ByRef Formula As Object, _
ByRef NumFormat As Object _
)
'Usage
Dim instance As Cell
Dim Formula As Object
Dim NumFormat As Object
instance.Formula(Formula, NumFormat)
void Formula(
ref Object Formula,
ref Object NumFormat
)
Parameters
- Formula
Type: System.Object%
The mathematical formula you want the = (Formula) field to evaluate. Spreadsheet-type references to table cells are valid. For example, "=SUM(A4:C4)" specifies the first three values in the fourth row.
- NumFormat
Type: System.Object%
A format for the result of the = (Formula) field.
Remarks
Formula is optional as long as there is at least one cell that contains a value above or to the left of the cell that contains the insertion point. If the cells above the insertion point contain values, the inserted field is {=SUM(ABOVE)}; if the cells to the left of the insertion point contain values, the inserted field is {=SUM(LEFT)}. If both the cells above the insertion point and the cells to the left of the insertion point contain values, Microsoft Word uses the following rules to determine which SUM function to insert:
If the cell immediately above the insertion point contains a value, Word inserts {=SUM(ABOVE)}.
If the cell immediately above the insertion point doesn't contain a value and the cell immediately to the left of it does, Word inserts {=SUM(LEFT)}.
If neither adjoining cell contains a value, Word inserts {=SUM(ABOVE)}.
If you don't specify Formula and all the cells above and to the left of the insertion point are empty, the result of the field is an error.