Days Until Scheduled
empty(prop("Scheduled")) ? 0 : dateBetween(prop("Scheduled"), now(), "days")
empty(prop("Scheduled")) ? 0
If Scheduled
is empty, display 0
dateBetween(prop("Scheduled"), now(), "days")
Otherwise calculate the number of days between the current date and Scheduled