Userform Radio Buttons- how code this ?

Pat_The_Bat

Board Regular
Joined
Jul 12, 2018
Messages
82
I've designed a simple userform with 3 radio dial buttons, an OK and a Cancel button.

How do I write the code so that when a user chooses OptionButton 1, then hits OK, the operation I want to perform is performed.

I feel like I should be getting this more easily! Appreciate help and guidance.
 
I'm curios:
You said:
How do I write the code so that when a user chooses OptionButton 1, then hits OK, the operation I want to perform is performed.

Why do you think you need to do both?
Click the option Button and then press a OK button

Why not just click the Option Button to perform the task

Something like this would run a script when you Click the option button

Code:
Private Sub OptionButton1_Click()
'Modified  5/16/2019  11:24:01 PM  EDT
MsgBox "You just clicked on me"
Cells(1, 1).Value = "Hello"
OptionButton1.Value = False
End Sub


 
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Pat_The_Bat

Can you post all the code you have for the userform?
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,446
Latest member
CodeCybear

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