G
Guest
I was very happy when I found that I could simplify my code when copy and
pasting to one line as follows
Range("Current_Prices").Copy Destination:=Range
However I would like to paste the value. Is this possible in one line or do
we have to make do with
Application.Goto Reference:="Current_Prices"
Selection.Copy
Application.Goto Reference:="Previous_Prices"
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Thanks in advance for your assistance
pasting to one line as follows
Range("Current_Prices").Copy Destination:=Range
However I would like to paste the value. Is this possible in one line or do
we have to make do with
Application.Goto Reference:="Current_Prices"
Selection.Copy
Application.Goto Reference:="Previous_Prices"
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Thanks in advance for your assistance