In the form's Current event:
If Me.YourTextBox > 1 Then
Me.YourLabel Visible = False
Else
Me.YourLabel.Visible = True
End If
This assumes the format for the YourTextBox field is Currency. Use the
actual text box and label names.
If you need the label to be hidden or displayed immediately upon entering
the value into the text box you will need the same code in the text box's
After Update event.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.