I'm surprised I couldnt find a question about this here so guess I better ask.
I have a form with two date fields. [StartDate] and [EndDate]. Obviously, Enddate cannot predate Startdate field so I decided to do a validation rule for both fields.
I selected the startdate field and inserted
along with Validation text.
Now, the strange thing is that no matter what date I select in the StartDate field, the validation rule fires and the Validation Text pops up.
So I tried something different, I changed the validation rule to
and it still wont cooperate with me. I suspect it is due to some kind of Null problem unless it's completely different.
Matt
I have a form with two date fields. [StartDate] and [EndDate]. Obviously, Enddate cannot predate Startdate field so I decided to do a validation rule for both fields.
I selected the startdate field and inserted
Code:
[StartDate]<=[EndDate]
Now, the strange thing is that no matter what date I select in the StartDate field, the validation rule fires and the Validation Text pops up.
So I tried something different, I changed the validation rule to
Code:
<=[CAR Initiated Date]
Matt
Comment