Editing cell formulas within a macro

B

bobclark

I have cells that I want to add to the current formula using a macro for
repetitive tasks,

ie
edit
home
right one
=(new stuff 1)formula
end
=(newstuff 1)formula(newstuff 2)

any suggestions or appropriate links?
 
D

Dick Kusleika

Bob

ActiveCell.Formula = "=newstuff1" & Right(ActiveCell.Formula,
Len(ActiveCell.Formula)-1) & "newstuff2"

--
Dick Kusleika
MVP - Excel
Excel Blog - Daily Dose of Excel
www.dicks-blog.com

I have cells that I want to add to the current formula using a macro for
repetitive tasks,

ie
edit
home
right one
=(new stuff 1)formula
end
=(newstuff 1)formula(newstuff 2)

any suggestions or appropriate links?
 
B

bobclark

Thank You Very Much

Bob


~>Bob
~>
~>ActiveCell.Formula = "=newstuff1" & Right(ActiveCell.Formula,
~>Len(ActiveCell.Formula)-1) & "newstuff2"
 
Top