I'm checking a date field to see if the date is past due (less than today.)
In the On Load I have:
But, in the code's current state the message box displays even if there is a record with a date less than today.
When I switch the 'greater than less than' the message box doesn't display at all even if all the record's dates are greated then today.
Any ideas?
James
In the On Load I have:
Code:
If Me!ReminderDate > Date Then
MsgBox "Past Do Events."
Else
End If
But, in the code's current state the message box displays even if there is a record with a date less than today.
When I switch the 'greater than less than' the message box doesn't display at all even if all the record's dates are greated then today.
Any ideas?
James