View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default copy worksheet from xla to xls

This worked ok for me:

Option Explicit
Sub testme()
Workbooks("personal.xla").Worksheets("sheet1").Cop y _
befo=ActiveWorkbook.Worksheets(1)
End Sub

Sheet1 wasn't a hidden worksheet in the addin.

ndalal wrote:

Hello:

I would like to copy an existing worksheet, which is hidden in an
add-in XLA and copy it to an
existing XLS file?

Can someone help?

I have tried many things, but most of them crash...so I'm stucked.

Thanks in advance...
Andy


--

Dave Peterson