rendezvous
IS-IT--Management
In Excel, I have a selection of 4 radio buttons. When I click one of the 4 buttons, I am trying to find and store a value that the radio button has been selected, but once the subroutine has ended the value of the variables is reset. How can I keep the value of the variable, is there a better way.
thanks
*********
Public level1 As Integer
Sub OptionButton61_Click()
level = 1
End Sub
Sub OptionButton62_Click()
Value = True
level = 2
End Sub
same code for the next 2 radio buttons
*********
thanks
*********
Public level1 As Integer
Sub OptionButton61_Click()
level = 1
End Sub
Sub OptionButton62_Click()
Value = True
level = 2
End Sub
same code for the next 2 radio buttons
*********