Day and time-related exceptions are always evaluated first

If specified, the day and time exceptions are the first conditions evaluated, regardless of any other exceptions specified.

This means that if any day exception or any time exception is selected, it must be true or no objects will be triggered. For example, if you specify Day of Week = Monday or Tuesday, the result is as follows:

IF (DAY OF WEEK = MONDAY OR TUESDAY)
THEN CHECK OTHER EXCEPTIONS….

If more than one day or time is selected, they are treated as AND conditions. For example:

IF (DAY OF WEEK = MONDAY OR TUESDAY)
AND IF (DAY OF MONTH = LAST DAY)
THEN CHECK OTHER EXCEPTIONS….

In this case, both conditions must be true before the other exceptions will be checked.