Hello there,
Thanks to this community I’m well on my way to creating a “days since last contacted” graph, but I’m running into an issue.
I have a rollup column that uses the MAX() function, and then a formula column that runs this calculation:
DATETIME_DIFF(TODAY(),{Last Spoke To},‘days’)
There wouldn’t be an issue, but the MAX() function is pulling from a long list of events, some which have not happened yet . This is because I have a Zapier integration to pull in all my calendar events as they are scheduled. This causes certain “Days since last contacted” values to be negative, because the max value is in the future.
So my ultimate question is how to leverage the TODAY() function so MAX() can ignore any events that will occur after today. Hope this makes sense - thanks!