Yes - thanks to all - I realized I do not need the AND operator...
and actually, playing with the provided suggestions, I have two sub routines that appear (at first testing) to accomplish what I need without using ELSE and/or END if...
Private Sub Option1N_Click()
If chk1 = True Then option1Y = True
If chk1 = False Then Range("ErrOpt1N").Value = 1
txt4.Value = Range("ErrorScore").Value
End Sub
and
Private Sub Option1Y_Click()
Range("ErrOpt1N").Value = 0
txt4.Value = Range("ErrorScore").Value
End Sub
Thanks again!
Bookmarks