Hi,
I have a formula I am trying to get to work that I took from another forum post and it’s not working, not sure where the syntax is broken.
I am trying to mark a single select status field good or bad if the date of a last modified field is great than a certain number of days.
IE. If the date of the field “Date of last check” is older than 7 days, change the status field to Bad
Can someone tell me what I’m missing?
IF(
AND(
DATETIME_DIFF(
TODAY(),
{{Date of last check}},
‘days’
) >= 7,
{Status} = “Bad”
),
“Good”
)
