Oct 30, 2020 12:27 PM
Hi there,
I just need a little help to finish my workflow !
I want to put a status from the automatic field “Last modified time”.
Formula is : IF(DATETIME_DIFF({Update URL}, TODAY(),‘days’) >= 13, “ :exclamation: ”, IF(DATETIME_DIFF({Update URL}, TODAY(),‘days’) >= 7, " :alarm_clock: ", IF(DATETIME_DIFF({Update URL}, TODAY(),‘days’) >= 1, “ :repeat: ”, IF(IS_SAME(TODAY(), {Update URL}), “New :rocket: ”)))))
It works pretty fine when the field is “date” but won’t work when field is modified in “Last modified time”.
Anyone can help please ?
Solved! Go to Solution.
Oct 30, 2020 10:38 PM
I’ve not used the IS_SAME()
function much, but checking the docs, you’re missing a third element: the unit of comparison:
IS_SAME([date1], [date2], [unit])
Similar to how you have “days” as a unit of comparison for DATETIME_DIFF()
, try adding “day” as the unit of comparison for IS_SAME()
. By omitting that unit string, there’s no way of knowing how it’s trying to compare those two dates: hour? day? month? second?
Oct 30, 2020 01:30 PM
Can you include a screen shot of the three fields?
Oct 30, 2020 04:55 PM
Oct 30, 2020 07:00 PM
It looks like the formula field does not recognize that it is the current date. It is possible that there is a time zone issue going on. Depending on your time zone the displayed date might not match the day of TODAY()
.
Are you up for a little test?
TODAY()
and set it to show the time and use GMT time.Oct 30, 2020 07:26 PM
Thanks a lot for your reply !
Here’s a screenshot. As you can see, both fields are set DD/MM/YYYY… :confused:
Oct 30, 2020 10:38 PM
I’ve not used the IS_SAME()
function much, but checking the docs, you’re missing a third element: the unit of comparison:
IS_SAME([date1], [date2], [unit])
Similar to how you have “days” as a unit of comparison for DATETIME_DIFF()
, try adding “day” as the unit of comparison for IS_SAME()
. By omitting that unit string, there’s no way of knowing how it’s trying to compare those two dates: hour? day? month? second?
Oct 31, 2020 03:39 AM
Yeeah thank you very much !!