Trying to click on option button on user form and have value added to active cell.
My code not working.
![]()
Private Sub UserForm1_Click() If OptionButton1 Then ActiveCell.Value = 1 If OptionButton2 Then ActiveCell.Value = 2 End Sub
Trying to click on option button on user form and have value added to active cell.
My code not working.
![]()
Private Sub UserForm1_Click() If OptionButton1 Then ActiveCell.Value = 1 If OptionButton2 Then ActiveCell.Value = 2 End Sub
Hi, dannac,
right now you need to click on the UserForm itself instead of the optionbuttons. And you shhould receive an error message as End Ifs are missing.
Please add the following code to your userform:
HTH,![]()
Private Sub OptionButton1_Click() If OptionButton1 Then ActiveCell.Value = 1 End If End Sub Private Sub OptionButton2_Click() If OptionButton2 Then ActiveCell.Value = 2 End If End Sub
Holger
Use Code-Tags for showing your code: [code] Your Code here [/code]
Please mark your question Solved if there has been offered a solution that works fine for you
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks