L
Lysy
Need to check that user entered data in all the required
fields on a form.
Can't do it at a table level as the user has an option of
going into a record at a later time to complete it.
Tried "if" (below)fuction but getting run time errors.
Field: Part_Number is text and Complaint_Complete is check
box.
Private Sub Complaint_Complete_AfterUpdate()
If ((Part_Number = "") And (Complaint_Complete.Value =
true))
Then MsgBox "Missing Data", vbInformation, "NOTE"
End If
End Sub
Thank you much!
fields on a form.
Can't do it at a table level as the user has an option of
going into a record at a later time to complete it.
Tried "if" (below)fuction but getting run time errors.
Field: Part_Number is text and Complaint_Complete is check
box.
Private Sub Complaint_Complete_AfterUpdate()
If ((Part_Number = "") And (Complaint_Complete.Value =
true))
Then MsgBox "Missing Data", vbInformation, "NOTE"
End If
End Sub
Thank you much!