People
Days Since Last Appointment
(now() > prop("Last Appointment")) ? dateBetween(now(), prop("Last Appointment"), "days") : 0
(now() > prop("Last Appointment"))
Checks to see if the current date is greater than the
Last Appointment
date.? dateBetween(now(), prop("Last Appointment"), "days")
If it is, display the number of days.
: 0
Otherwise display 0.
Contact
prop("Days Since Last Appointment") > 10