Hi Everyone,
My team was previously using a calc that looked like WEEKDAYDIFF({lastUpdateDate}, $$TODAY) to see when the last time a request/issue/project was updated.
However, as the use of the platform and the complexity of our systems has started to increase, we noticed that this calc was picking up some undesired system updates driven by some added calculations to custom forms (Namely: a set of status timestamp fields coupled with a tracking field to check when a project goes from "Open" to "Closed").
Now, I've switched to this calc:
ROUND(DATEDIFF($$TODAY, {lastNote}.{entryDate}),1)
However I'm not entirely sure I like it as I will see if the most recent update is made within the same business day, I actually get a negative number for the day E.g. (-0.5).
Anyone have an idea on how to only show whole positive numbers here? Whether it be here in the custom form calc, or an additional edit to the textmode that displays this column?