Also - as a bonus, here is a formula I wrote for a Column on the Contacts Table called: Time Since Last Contact which will output human friendly “pretty” elapsed time since last contact.
IF(
DATETIME_DIFF(NOW(), {Last Contact}, ‘s’) > 0,
(IF(
DATETIM...
I deleted my last post because I figured this out. To help future folks looking for the answer and to provide more detail- here is what I did.
Using a setup very similar to the Sales CRM demo -> meaning that
I have an “Interactions” Table that logs t...