Help! Activate worksheet from a listbox

  • Thread starter Thread starter NightProbe
  • Start date Start date
N

NightProbe

Is it possible to have a worksheet (from a multiple worksheet
workbook) popup as the active worksheet by selecting its name from
within a listbox or combo box? I want to hide all the worksheets and
provide a way that a particular worksheet is shown and then hid again
after use. I can't seem to find any information on how to do this if
at all possible. Any help will surely be appreciated!
 
Something like

With Worksheets(Listbox1.Value)
.Visible = True
.Activate
End With

but you can't hide them all, at least one must be visible
 
Something like

With Worksheets(Listbox1.Value)
.Visible = True
.Activate
End With

but you can't hide them all, at least one must be visible
 

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