Copy a worksheet without 'opening' workbook

  • Thread starter Thread starter SteveS
  • Start date Start date
S

SteveS

Hello,

I need to copy worksheets off several workbooks. I do not want t
'fully open' the workbooks -- the VBA code takes too long to load.

Is there a way to copy a worksheet without 'fully opening' the file?

Thanks,
Stev
 
Not that I know of, but you can open the workbook without enabling the
macros, if that's what's taking so long.... just use

Application.EnableEvents = False

'Open the workbook here and do your stuff

Application.EnableEvents = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top