Time of day
Check if the current time is between a time range.
Last updated
Check if the current time is between a time range.
Last updated
Helpful if you wish to apply a rule based on certain times of the day. For example changing the priority between the hours 4pm and 8pm.
Conditional Expression (for normal working hours. (08:00 – 16:59)):
AsDate Format(‘HH’) AsNum Between(8,16)
Please note, for the time slot between 9am and 10am the expression would be as follows:
AsDate Format("HH") AsNum between (9,9)
For half hours use the following:
AsDate Format("HHmm") AsNum between (0800,1530)