hi there, need help.
if we enter the date < the year 2002 it works but if not then it doesn't:
I want it so that if todays date exceeds the order delivery by date then alert the user otherwise don't.
any ideas?
if we enter the date < the year 2002 it works but if not then it doesn't:
Code:
If Me![Delievered].Value = 0 Then
Order_Delivery_needed_by.SetFocus
If Order_Delivery_needed_by.Text = "" Or Order_Delivery_needed_by.Text = " " Then
MsgBox ("Enter the delivery date the customer needs this order by!")
Exit Sub
Else
If Date > Order_Delivery_needed_by.Text Then
MsgBox ("This delivery date is overdue!")
End If
End If
End If
I want it so that if todays date exceeds the order delivery by date then alert the user otherwise don't.
any ideas?