Open a specific sheet with VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I was wondering what the VBA code was for opening a specific sheet in
another unopen workbook.

For example from one workbook I want to open sheet6 on another one

my code is beneath

Workbooks.Open "\\Kerrygriffit-pc\external\Other\Money\New Going out Sheet
V2.xls\february"

Thanks Joel
 
One way:


Workbooks.Open "\\Kerrygriffit-pc\external\Other\Money\New Going out
Sheet V2.xls\february"
ActiveWorkbook.Sheets("Sheet6").Activate
 

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