L
Lori
I am trying to write a rule that says if Application Type is New or Renewal
then Due Date is required. I'm not sure how to write this, what I have
doesn't work:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.Application_Type = 'New' or 'Renewal' and
IsNull(Me.Application_Due_Date) = True Then
MsgBox "Please enter the Application Due Date."
Cancel = True
End If
Any help is greatly appreciated! Thanks
then Due Date is required. I'm not sure how to write this, what I have
doesn't work:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.Application_Type = 'New' or 'Renewal' and
IsNull(Me.Application_Due_Date) = True Then
MsgBox "Please enter the Application Due Date."
Cancel = True
End If
Any help is greatly appreciated! Thanks