Copy a page from an xla file

  • Thread starter Thread starter Andrew Bourke
  • Start date Start date
A

Andrew Bourke

Hi
When you set the property IsAddin = true for an xla file, any workbook
pages become invisible to normal users.
Is it possible to easily copy one of those 'invisible' pages to another
opened, normal xls file ? This page to copy might be an update for an
existing page in the xls file.

TIA

Andrew
 
Workbooks("youradd.xla").Sheets(1).Copy _
before:=ActiveWorkbook.Sheets(1)

or

Workbooks("youradd.xla").Sheets("SomeSheetNameHere").Copy _
before:=ActiveWorkbook.Sheets("anothersheetnamehere")
 
Back
Top