Could someone give me the proper syntax in either FormCalc or JavaScript for the following calculation to be entered in a "Date/Time Field".
If the entered date is less than "the actual Date", display "the actual date" in the Date/Time Field.
If the entered date is higher than "the actual Date", display "the higher, the entered date" in the Date/Time Field.
Thank you for your help!
Birgit
if (Date2Num(EnteredDate,"formatString") < Date2Num(Date()) then
EnteredDate = Date
endif
George Kaiser