A
aMack
I get a "Compile Error - method or data not found" for the following coding:
Private Sub Ready_to_Bill_Enter()
If (Me.Customer_#) Is Null Then
MsgBox "Cannot INVOICE if No Order #"
Cancel = True
Me.Customer_#.SetFocus
End If
End Sub
[Ready to Bill] is a "Yes/No" field
[Customer #] is a "Text" field
The results I am loking for is that a user cannot change [OK to Bill] if
there is no [Customer #]
Thanks
Private Sub Ready_to_Bill_Enter()
If (Me.Customer_#) Is Null Then
MsgBox "Cannot INVOICE if No Order #"
Cancel = True
Me.Customer_#.SetFocus
End If
End Sub
[Ready to Bill] is a "Yes/No" field
[Customer #] is a "Text" field
The results I am loking for is that a user cannot change [OK to Bill] if
there is no [Customer #]
Thanks