I would like to know if there a way to create an array which contains only formulas (not value).
for e.g.
dim myArr (1) as string
myArr(0) = "=Sum(A1:C3)"
myArr(1) = "=Sum(B1:D3)"
Range("E1:E2") = myArr
The result is cells have above formulas as a string. is there any straightforward method of storing formulas and applying to ranges?.
thanks