Pendelfin said:
Please can somone let me know what the validation rule should be in
the End Time field to ensure that this number is after the Start Time.
The validation rule for both controls would be...
DateValue(Nz([Start Date],"1000-01-01"))<DateValue(Nz([End Date],"3000-01-01"))
Or Is Null
The Nz()s allow for the fileds top be null (required since you must fill out one
first). The DateValue functions would not be necessary if the controls are
bound to DateTime fields, but might be if the controls are unbound.