N NeedsHelp2 New Member Joined Nov 20, 2005 Messages 22 Nov 29, 2005 #1 How do I set the default so that when the spreadsheet is opened it automatically opens the multipage at page 5?
How do I set the default so that when the spreadsheet is opened it automatically opens the multipage at page 5?
Andrew Poulsom MrExcel MVP Joined Jul 21, 2002 Messages 73,092 Nov 29, 2005 #2 Like this? Code: Private Sub UserForm_Initialize() MultiPage1.Value = 4 End Sub The MultiPage Index is zero based.
Like this? Code: Private Sub UserForm_Initialize() MultiPage1.Value = 4 End Sub The MultiPage Index is zero based.