I'm still farely new at coding in Access. So anything you could do to help would be grateful. I've got a simple form with a test box and a command button and two labels that are invisible. What I'm looking to do is this. When a user types a zip code in the text box and hits the command button (which I need to query the necessary Table), then I need the correct label to become visible.
This is what I've got please let me know how I need to get this to work.
If Text0 = [tables]![sheet1]![Zip_Codes] Then
Label3.Visible = True
Else:
Label4.Visible = True
End If
Do I need to build a query first and then how to a reference the If/Then statement to the query.
Please help.
Thanks,
Shawn
This is what I've got please let me know how I need to get this to work.
If Text0 = [tables]![sheet1]![Zip_Codes] Then
Label3.Visible = True
Else:
Label4.Visible = True
End If
Do I need to build a query first and then how to a reference the If/Then statement to the query.
Please help.
Thanks,
Shawn