Insert Formulas
Posted by Scott Staples on July 25, 2000 12:43 PM
I need to insert formulas in cells that will multiply the value in the A column and the value in the E column. I think I have figured out how but there is something wrong with the syntax. The code is pasted below, any help is appreciated.
cll = 10
Do
cll = cll + 1
range("I" & cll).formula = ("=A" & cll "* E" & cll)
Loop Until cll = 54