Make check box visible only if a specific option is checked
I have an option group that has 8 options. If the first option is selected, I would like two other check boxes to be visible. If the first option is not selected, then the two check boxes would be invisible.
Any ideas?
Thanks,
Chris
Microsoft Access
Last Comment
PatHartman
8/22/2022 - Mon
Steven Harris
Are you comfortable with VBA?
Say checkbox1 is your 'control' and checkbox4 and checkbox5 are your 'variables', you could use:
If me.checkbox1=true Thenme.checkbox4.enabled = Trueme.checkbox4.enabled = Trueelseend if
Say checkbox1 is your 'control' and checkbox4 and checkbox5 are your 'variables', you could use:
Open in new window
It is hard to say without verifying the source.