People

Days On Hold

(prop("On Hold Since") < now()) ? dateBetween(now(), prop("On Hold Since"), "days") : 0

(prop("On Hold Since") < now())

Checks to see if On Hold Since is before the current date.

? dateBetween(now(), prop("On Hold Since"), "days")

If it is, display the number of days between On Hold Since and the current date.

: 0

Otherwise display 0

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>