I am trying to hide a label and text box if a combo box, within the same form, is blank or "No."
Private Sub Form_Current() If Not Me.NewRecord Then
If IsNull(Me!comCFTWaiver) Then
Me!txtCFTWaiverAppr.Visible = False
Me!Label81.Visible = False
Else
Me!txtCFTWaiverAppr.Visible =...