Thread
:
PasteSpecial error
View Single Post
#
2
Posted to microsoft.public.excel.programming
Nick Hodge
external usenet poster
Posts: 1,173
PasteSpecial error
Robert
Try
With ActiveCell.Offset(-4, -1)
.Resize(1, 29).Copy
.PasteSpecial Paste:=xlPasteValuesAndNumberFormats
End With
--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
HIS
"Robert Christie" wrote in message
...
Hi
This line of code brings up a "Compile error" - "Expected: end of
statement"
with Paste highlighted,
what end of statement is it expecting i think I've tried them all.
ActiveCell.Offset(-4, -1).Resize(1, 29).Copy
Destination:=ActiveCell.Offset _
(-4, -1).PasteSpecial Paste:=xlPasteValuesAndNumberFormats
From previous posts I've read it appears it's best to split these into 2
lines or place in a "With - End With.
Any advice very much appreciated.
I'm trying to tidy up my code and clear formulas not required three rows
back as I add new data to the sheet.
--
Thank you
Regards
Bob C
Using Windows XP Home + Office 2003 Pro
Reply With Quote
Nick Hodge
View Public Profile
Find all posts by Nick Hodge