Hello,
I am trying to write an expression that will result in a date in the format (mm/dd/yyy). I want to display the curent day if it is before 11:00 am based on the system time, and the next day if it is after 11:00 am. Below is the expression that I currently am working with... but it is not working. Please help. LW
IIf(Time()>Hour(11),Date(),DateAdd("d",1,Date()))
ps. i might be going to the total wrong direction....