View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Bob Bob is offline
external usenet poster
 
Posts: 972
Default Ron de Bruin - Using PasteSpecial (xlPasteValues) instead of C

Dave,
That did the trick! Thanks a million!!!
Regards, Bob


"Dave Peterson" wrote:

Maybe ...

.Offset(1, 0).Resize(.Rows.Count - 1, .Columns.Count).Copy

DestSh.Cells(Last + 1, "A").pastespecial paste:=xlpastevalues

Two lines--no continuation characters.

Bob wrote:

Ron,
Sorry to bother you, but I need to change the following line in the macro
you sent me:

.Offset(1, 0).Resize(.Rows.Count - 1, .Columns.Count).Copy DestSh.Cells(Last
+ 1, "A")

from a Copy operation to a PasteSpecial (xlPasteValues) operation. Could
you kindly tell me how to change it? Thanks for your help.
Regards, Bob


--

Dave Peterson