The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I'd like to build a field that returns the days until due if >0, or "Assign Due Date" if Nan, or "Passed Due" if <0.I am struggling to combine the IF statement with the following formula:DATETIME_DIFF({Deadline},TODAY(),'days')Any tips on how to acco...
Solved! Took a lot of trial and error, but got there in the end.IF(DATETIME_DIFF(Deadline,TODAY(),'days')>0,DATETIME_DIFF(Deadline,TODAY(),'days'),IF(DATETIME_DIFF(Deadline,TODAY(),'days')<0,"Passed Due","Assign Due Date"))
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.