View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] michlite@gmail.com is offline
external usenet poster
 
Posts: 1
Default copy and paste contents of sheet

I want to copy an entire sheet and paste it into another existing
sheet. Using the code below causes my cpu to peg for serveral minutes.
The range is usually around a1 to h400.

Here is the code I am using:

Worksheets(2).Select
Cells.Select
Selection.Copy

Worksheets(3).Select
ActiveSheet.Paste
Application.CutCopyMode = False

Thanks for any help you can provide.