Hiding Workbooks

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

Guest

Hi
Could someone please adbvise on the following
* I would like to open a Excel workbook from within another workbook. It
contains data & would like it to be hidden
* would perform some searches on this hidden Data workbook from calling
workbook (can I do that)
* once done would like close this hidden datda workbook

Thanks a lot
 
Set wb = Workbooks("the_wb_name").Open
' do your stuff
wb.Close

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thanks Bob, but how do I keep this open workbook Hidden while I work on it.
 
Set wb = Workbooks("the_wb_name").Open
wb.Windows(1).Visible = False
' do your stuff
wb.Close
 

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