Event if Null Field?

hinser13

Registered User.
Local time
Today, 08:31
Joined
Aug 8, 2010
Messages
75
I have a quote field, users currently click a cmd button to prompt a second pop up form, that adds one to the last quote no to create a new quote no.

How can I create an event to prompt this form if the field is null?

Thanks Mark
 
You could test;
Code:
If IsNull(Me.YourFieldName) Then
     MsgBox "Please enter a Quote Number"
     Cancel = True
End If
 
Code:
If IsNull(Me![TheField]) Then
     msgbox "here's your prompt"
End If
 

Users who are viewing this thread

Back
Top Bottom