View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
HotRod HotRod is offline
external usenet poster
 
Posts: 147
Default Copying to another worksheet

THANKS



"Tom Ogilvy" wrote in message
...
worksheets(1).Columns(3).copy Destination:=Worksheets("Data").Range("F1")

Worksheets("Data").Cells.ClearContents
or
Worksheets("Data").Rows.Delete

--
Regards,
Tom Ogilvy

"HotRod" wrote in message
...
How can I copy columns from one worksheet to another in VBA? Also is
there

a
way to clear the whole sheet when I'm finished?