OptionButton must be tru before running command button code

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,738
Office Version
  1. 2007
Platform
  1. Windows
On my userform i have 2 optionbuttons
Lets call them 1 & 2

Only 1 will ever be selected BUT before the command button code runs it must check if one of them is selected,if not should show msgbox advising user to make a selection
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
VBA Code:
If CommandButton1 = False And CommandButton2 = False Then
MsgBox "Please select an option", vbCritical, "Selection"
 Exit Sub
End If
 
Upvote 0
Hi
How does that check if either of the OptionButtons are true ?
 
Upvote 0
Hi
How does that check if either of the OptionButtons are true ?
It doesn't. Checked = True, Unchecked = False. In your OP you said you wanted to check if one of them has been checked. If both are Unchecked then a message pops up requesting the user to make a choice. Did I mis-understand your OP?
 
Upvote 0

Forum statistics

Threads
1,223,905
Messages
6,175,297
Members
452,633
Latest member
DougMo

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