In summery I have 2 sets of 2 option button groups, for example;
group 1 has:
Option_Button_A
and
Option_Button_B
Group 2 has:
Option_Button_C
and
Option_Button_D
Depending on which 2 buttons are selected I would like to run a different code. (4 in total)
I tried to use a code along the lines of;
If Option_Button_A.value = True & Option_Button_C.Value = True Then
[then the specific code]
else If Option_Button_A.value = True & Option_Button_D.Value = True Then
ECT....
However this does not seem to be working.
Could anybody help out??
Bookmarks