I am having trouble with this.
I have a combobox that you can select: Class 1, Class 2 or Class 3
When you select Class 1, I want a check box turned visible.
I have tried various If stmts:
Private Sub Combo33_Enter()
If Combo33 = "Class 1" Then
txtClass1.Value = True
Else
txtClass1.Value = False
End If
End Sub
I have also tried after update, on change, etc.
I am missing something, but I can't seem to find it.
I have a combobox that you can select: Class 1, Class 2 or Class 3
When you select Class 1, I want a check box turned visible.
I have tried various If stmts:
Private Sub Combo33_Enter()
If Combo33 = "Class 1" Then
txtClass1.Value = True
Else
txtClass1.Value = False
End If
End Sub
I have also tried after update, on change, etc.
I am missing something, but I can't seem to find it.