I
Intruder9
If I had the following code in a macro
Range("B1").Select
Application.CutCopyMode = False
Selection.Copy
ActiveWindow.SmallScroll ToRight:=6
Range("K1").Select
ActiveSheet.Paste
Is there a way to copy a cell that contained for example
A10= Application.CutCopyMode= True
and paste it over the line of code that states
Application.CutCopyMode = False
What I would like to be able to do is be able to change a line of code by
what is in a cell. This is the example I used to illistrate but not the
actual code being replaced.
Thanks
Range("B1").Select
Application.CutCopyMode = False
Selection.Copy
ActiveWindow.SmallScroll ToRight:=6
Range("K1").Select
ActiveSheet.Paste
Is there a way to copy a cell that contained for example
A10= Application.CutCopyMode= True
and paste it over the line of code that states
Application.CutCopyMode = False
What I would like to be able to do is be able to change a line of code by
what is in a cell. This is the example I used to illistrate but not the
actual code being replaced.
Thanks