View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Per Jessen Per Jessen is offline
external usenet poster
 
Posts: 1,533
Default Using Variables in ActiveCell.Formula

Hi

Use ActiveCell.Formula ,

not

ActiveCell.FormulaR1C1

Regards,
Per

"dustinbrearton via OfficeKB.com" <u44989@uwe skrev i meddelelsen
news:8a93d2a582f55@uwe...
I am trying to use the below code to insert
"=SUM(D2:D3)"


LastStop = 1
X = 4

StartCell = "D" & LastStop + 1
EndCell = "D" & X - 1
ActiveCell.FormulaR1C1 = "=Sum(" & StartCell & ":" & EndCell & ")"

The result of the activecell.formula line is "=Sum('D2':'D3')"

For ease of explanation I have set LastStop and X to certain numbers. In
my
code these two variables change based on where the set ends.

Where have I gone wrong in the ActiveCell.Formula line? How do I get rid
of
the ' so that the formula will actually work?

--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200809/1