View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Hide Worksheets?

Glad to help

--
Don Guillett
SalesAid Software

"Mark J" wrote in message
...
Thank You.

"Don Guillett" wrote:

At least ONE worksheet must be visible

--
Don Guillett
SalesAid Software

"Mark J" wrote in message
...
here is a copy of my code , but when i open workbook , "P001" is still
open
in background, any ideas?

Private Sub Workbook_Open()
Sheets(["PS001"]).Visible = False
Sheets(["PS002"]).Visible = False
Sheets(["PS003"]).Visible = False
UserForm1.Show
End Sub