I need to enable a CheckBox(Jan) based on the selection of a ComboBox (Combo454) in Access 2010. The results I want is that when the answer of "Yes" is selected from the ComboBox then the CheckBox for the month of January will automatically be checked
I've tried several code combination, the following being the last of many the still have not worked:
I've tried several code combination, the following being the last of many the still have not worked:
Code:
Private Sub Combo454_AfterUpdate() If Combo454.Value = True Then Jan.Enabled = True Else: Jan.Enabled = False End If
Comment