The table validation rule would be:
Validation Rule: Not([TO_DATE]<[FROM_DATE])
Validation Text: your custom message here...
The Not() is used to allow one or both dates to be Null. If they are both required, this works as well:
Validation Rule: [TO_DATE]>=[FROM_DATE]
(°v°)
Main Topics
Browse All Topics





by: peter57rPosted on 2009-11-05 at 09:08:18ID: 25751604
>= [FROM_DATE]
should work.
You are definitely setting this in the form and NOT in the table, aren't you?