If OptionButton Checked Then

CoolAuto

New Member
Joined
Aug 26, 2015
Messages
32
Trying to have my email generating macro address it based on which radio button is checked on the excel worksheet.

Getting "subscript out of range" on this line
Code:
Set ws = ActiveWorkbook.Worksheets.Item("Sheet1")
in below code

Code:
[COLOR=#252C2F][FONT=Helvetica]
Sub IfOptionButtonChecked()
Dim ws As Excel.Worksheet
Set ws = ActiveWorkbook.Worksheets.Item("Sheet1")
Dim optBtn1 As Excel.OptionButton
Set optBtn1 = ws.OptionButtons.Item("Option Button 1")
If optBtn1.Value = 1 Then ' it is checked
   Debug.Print "Option Button 1 is checked"
End If
End Sub[/FONT][/COLOR]
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi
Try this.

Code:
Sub IfOptionButtonChecked()

If Option Button 1.Value = true Then ' it is checked
   Debug.Print "Option Button 1 is checked"
End If
End Sub
 
Upvote 0
Hi again,
Little fix - I made a mistake because I placed accidently two spaces in option button 1"" whilst there should not be any. Check this out.

Code:
Sub IfOptionButtonChecked()

If OptionButton1.Value = true Then ' it is checked
   Debug.Print "Option Button 1 is checked"
End If
End Sub
 
Upvote 0
Syntax error If Option Button 1.Value = true Then ' it is checked

Ok, without spaces it gives Run-time error 424 Object required on
Code:
If OptionButton1.Value = True Then ' it is checked
 
Last edited:
Upvote 0
Check this.

Code:
Sub IfOptionButtonChecked()
Dim ws as worksheet
Set ws=worksheets("Sheet1")
IF ws.OptionButtons("Option Button 1").Value=1 then
Debug.Print "Option Button 1 is checked"
Set ws=nothing
End Sub
[\CODE]
 
Upvote 0
Just had to switch Sheet1 to the custom name from the tab and add End If to your code - now it works. Dzięki
 
Upvote 0
Hi,
I thought your custom sheet name was "Sheet1" and you're right I did forgot to write "end if" at the end, so sorry for that. Anyway, good to hear it works for you. Happy to help "Proszę" :).
 
Upvote 0

Forum statistics

Threads
1,215,002
Messages
6,122,652
Members
449,092
Latest member
peppernaut

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