Syntax

expression.FormulaArray

expression A variable that represents a Range object.

Remarks

If you use this property to enter an array formula, the formula must use the R1C1 reference style, not the A1 reference style (see the second example).

Example

This example enters the number 3 as an array constant in cells A1:C5 on Sheet1.

Visual Basic for Applications
Worksheets("Sheet1").Range("A1:C5").FormulaArray = "=3"

This example enters the array formula =SUM(R1C1:R3C3) in cells E1:E3 on Sheet1.

Visual Basic for Applications
Worksheets("Sheet1").Range("E1:E3").FormulaArray = _ "=Sum(R1C1:R3C3)"
Assign a certain value to every cell in a range? formula array Formula Array Property FormulaArray FormulaArray Property FormulaArray? Set the formula for calculating a group of cells?

See also: