I am trying to hide a label and text box if a combo box, within the same form, is blank or "No."
Can you provide assistance. Using Access 2013.
Code:
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 = True
Me!Label81.Visible = True
End If
Else
Me!txtCFTWaiverAppr.Visible = True
Me!Label81.Visible = True
End If
End Sub
Can you provide assistance. Using Access 2013.
Last edited: