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.
So I have the following:
IF(
TODAY() > {Date Due}, “OVERDUE”
)
I have a Column named ‘Days’ for days left to do my task, so I made the following, using the nested IF tutorial:
IF(
TODAY() > {Date Due}, “OVERDUE”,
IF({Days} < 5, “Soon”)
)
I’m tryi...