Validation List based on Option Button

nyrangers1994

New Member
Joined
Aug 30, 2011
Messages
17
I have a cell where I need to have a validation list. The issue is I want the validation list to change based upon an option button selection.

For example, if "Option Button 1" is selected, I want "Validation List 1" to show up. If "Option Button 2" is selected, I want "Validation List 2" to show up.

Any thoughts?

Thanks.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
One way to do this would be to put your validation lists in columns off to the side of your regular worksheet data. Give each list a range name, like PickList1 and PickList2. You can then hide those columns if you like.

Next, paste in the following code for your OptionButtons so that they call the right validation list, which, in this example, is placed in cell C1:

Code:
Private Sub OptionButton1_Click()
    Range("C1").Validation.Delete
    Range("C1").Validation.Add Type:=xlValidateList, Formula1:="=PickList1"
    Range("C1").Validation.ShowError = False
End Sub
 
Private Sub OptionButton2_Click()
    Range("C1").Validation.Delete
    Range("C1").Validation.Add Type:=xlValidateList, Formula1:="=PickList2"
    Range("C1").Validation.ShowError = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,101
Messages
6,170,116
Members
452,302
Latest member
TaMere

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