multi page user form
multi page user form
(OP)
All,
I am using a "multi-page userform" to perform several static calculations in a file. The multi page user form always opens to the first sheet tab in the user form. Is there some way to open a multi page user form on a page (sheet tab) other than page 1?
Thanks
D23
I am using a "multi-page userform" to perform several static calculations in a file. The multi page user form always opens to the first sheet tab in the user form. Is there some way to open a multi page user form on a page (sheet tab) other than page 1?
Thanks
D23





RE: multi page user form
RE: multi page user form
It is in EXCEL.
D23
RE: multi page user form
RE: multi page user form
I'm asking about a userform (VB) in EXCEL, not the file.
D23
RE: multi page user form
Private Sub UserForm_Initialize()
Me.MultiPage1.Value = 0
End Sub
RE: multi page user form
Thnaks for the code. I have to add a few if's and I'm good to go!
D23
RE: multi page user form