Thread: copying sheet
View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
MSP77079[_8_] MSP77079[_8_] is offline
external usenet poster
 
Posts: 1
Default copying sheet

Are you copying a sheet or copying a range?

If you are using:

ActiveSheet.Cells.Copy
'go to place you want to place you want to paste to, then
Range("A1").Select
ActiveSheet.Paste

You will get only information in the cells, not the command buttons,
and not any code written on the sheet.

On the other hand, if you are using:

Sheets(n).Copy After:=Workbooks("Book2").Sheets(i)

then, you should get all the data and the command buttons, and the code
written on the sheet.


---
Message posted from http://www.ExcelForum.com/