Hopefully a quick question for you guys:
I have a userform with 3 tick boxes, I want the choice of which box is ticked to disable inappropriate text boxes for the user. Ticking one box also disables the other tick boxes.
To do this I currently have the code:
When I check one of the tick boxes the other tick boxes are disabled but the text boxes remain
Any help appreciated!
G
I have a userform with 3 tick boxes, I want the choice of which box is ticked to disable inappropriate text boxes for the user. Ticking one box also disables the other tick boxes.
To do this I currently have the code:
Code:
If Tick1 = True Then:
Tick2.Enabled = False
Tick3.Enabled = False
Box2.Enabled = False
Box3.Enabled = False
Else
Tick2.Enabled = True
Tick3.Enabled = True
Box2.Enabled = True
Box3.Enabled = True
End If
When I check one of the tick boxes the other tick boxes are disabled but the text boxes remain
Any help appreciated!
G