Multi-tiered option selection in User form

SeniorTom

Board Regular
Joined
Jun 5, 2017
Messages
96
I'm trying to create a user form with 2 levels of selecting on the 1 form.

User can chose option ShotGunStart or TeeTimeStart. If they chose TeeTimeStart, then they can select 8,9 or 10 minute spacing.

o ShotGunStart
o TeeTimeStart
o 8 minute spacing
o 9 minute spacing
o 10 minute spacing

Currently, I can only select any 1 option. I can create 3 TeeTimeStarts, but want to learn if the 2 tier selection is possible.

You thoughts will be appreciated.

Regards,
Tom


EDIT: OOPs ... the format should have the 8,9,10 spacings indented.
 
Last edited by a moderator:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You could create a userform with one Frame (Frame1) and two Option Buttons (OptionButton1 & OptionButton2).
Then put three more option buttons (OptionButton3, OptionButton4, OptionButton5) inside the frame.
Then put code like this in the userform's code module
Code:
Private Sub OptionButton2_Change()
    Frame1.Visible = OptionButton2.Value
End Sub

Private Sub UserForm_Initialize()
    OptionButton1.Caption = "ShotGunStart"
    OptionButton2.Caption = "TeeTimeStart"
    OptionButton3.Caption = " 8 min spacing"
    OptionButton4.Caption = " 9 min spacing"
    OptionButton5.Caption = "10 min spacing"
    Frame1.Visible = False
End Sub
 
Upvote 0
Sorry for the delay. I was working on another piece of my project. You pointed me in the right direction and I have got my user form working.
Thanks,
Tom
 
Upvote 0

Forum statistics

Threads
1,222,828
Messages
6,168,484
Members
452,193
Latest member
Arlochorim

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top