D
DrONDeN
I have a form (Form1) with a combo box (Combo43) with three values:
Reference 1
Antenatal 1
Quant 1
I also have two check boxes (check36 and check34)
What is the best way to implement such that when Reference 1 is
selected in the combo box, check34 changes from false to true, and
when Antenenal 1 or quant 1 is selected, check 36 changes to true?
I've tried something along the lines of, but no luck:
Private Sub Combo43_AfterUpdate()
If Me.Combo43 = "Reference 1" Then
Me.Check32 = True
Else
Me.Check32 = False
End If
End Sub
I'm a beginner at this, so any help would be amazing. Thanks!
Reference 1
Antenatal 1
Quant 1
I also have two check boxes (check36 and check34)
What is the best way to implement such that when Reference 1 is
selected in the combo box, check34 changes from false to true, and
when Antenenal 1 or quant 1 is selected, check 36 changes to true?
I've tried something along the lines of, but no luck:
Private Sub Combo43_AfterUpdate()
If Me.Combo43 = "Reference 1" Then
Me.Check32 = True
Else
Me.Check32 = False
End If
End Sub
I'm a beginner at this, so any help would be amazing. Thanks!