ExcelUser87
New Member
- Joined
- Nov 11, 2010
- Messages
- 9
I have not been able to find the answer to my questions yet and im not exactly sure how to describe it so i will use an example below.
I am using a form to populate multiple sheets in a file. and example of two different groups of Option buttons and Check boxes i am currently using is below.
Activity Group (Check Boxes)
A B C D E
Section Group (Option Button)
1 2 3 4
Currently my code reads like this:
If A And 1 = True Then
Range("C3").Select
End If
However the problem i am facing is that C3 is selected even if A and 2 are selected or if B and 1 are selected.
How do i make it clear that only if BOTH A and 1 are selected together can C3 be selected?
Thanks!!
I am using a form to populate multiple sheets in a file. and example of two different groups of Option buttons and Check boxes i am currently using is below.
Activity Group (Check Boxes)
A B C D E
Section Group (Option Button)
1 2 3 4
Currently my code reads like this:
If A And 1 = True Then
Range("C3").Select
End If
However the problem i am facing is that C3 is selected even if A and 2 are selected or if B and 1 are selected.
How do i make it clear that only if BOTH A and 1 are selected together can C3 be selected?
Thanks!!