Welcome Sheet?

S

Stu

Hello,
I need a sheet to be in a workbook and it will be a sort of welcome screen,
what I want this sheet to do is be visible on open but NOT a tab on the
bottom(where it says sheet 1, sheet 2, etc...). Is this possible, if so ...
How?

Thanks
 
P

Paul B

Stu, Here is one way, using something like this, put this in your worksheet
code

Private Sub Worksheet_Deactivate()
Sheet1.Visible = xlSheetVeryHidden
End Sub

And this in the this workbook code

Private Sub Workbook_Open()
Sheet1.Visible = xlSheetVisible
Sheet1.Select
End Sub

You could also use a userform as a welcome screen

--
Paul B
Always backup your data before trying something new
Using Excel 2000 & 97
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
 
S

Stu

I don't seem to get on well with user forms. I just can't figure them out.

--
Thanks,
Stu


Paul B said:
Stu, Here is one way, using something like this, put this in your worksheet
code

Private Sub Worksheet_Deactivate()
Sheet1.Visible = xlSheetVeryHidden
End Sub

And this in the this workbook code

Private Sub Workbook_Open()
Sheet1.Visible = xlSheetVisible
Sheet1.Select
End Sub

You could also use a userform as a welcome screen

--
Paul B
Always backup your data before trying something new
Using Excel 2000 & 97
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
 

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

Top