I am trying to set a value on a date field to not exceed a maximum of 30 days after the value in another date field on the same form. I am a newbie and have very little idea how to go about this.
Thanks,
Darryl
I am trying to set a value on a date field to not exceed a maximum of 30 days after the value in another date field on the same form. I am a newbie and have very little idea how to go about this.
Thanks,
Darryl
Subject: Use an Input Validation formula for the second field
TDate := @Adjust(FirstField; 0; 0; 30; 0; 0; 0);@If(SecondField > TDate; @Failure("Second date must be within 30 days of " + @Text(FirstField)); @Success)