View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Peter Chatterton[_2_] Peter Chatterton[_2_] is offline
external usenet poster
 
Posts: 17
Default Can't copy ActiveSheet to clipboard

Shouldn't this code create a new worksheet from the active one?

It does create a new sheet,
but just copies the current clipboard to it.

ActiveSheet.Select
ActiveWorkbook.Sheets.Add After:=Worksheets(1)
ActiveWorkbook.Worksheets(2).Paste

Thanks,
Peter