Fill a column with a value based on the date of another column

I have a "Status" column where users can select "Completed" from a drop down list. There is another column called "Due Date" that already has value plus a third column called "Timeliness".
What I would like is...when a user select Completed on the Status column, it will enter "Late" in the "Timeliness" column if the current date (e.g. when users marked it as completed) is later than the date set on the "Due Date" column.
Best Answer
-
After creating the Date Completed column, set up an Automation as follows:
Timeliness column formula:
=IF(AND(Status@row = "Completed", [Date Completed]@row <= [Due Date]@row), "On Time", "Late")
Answers
-
After creating the Date Completed column, set up an Automation as follows:
Timeliness column formula:
=IF(AND(Status@row = "Completed", [Date Completed]@row <= [Due Date]@row), "On Time", "Late")
-
Thanks!! Got it to work exactly!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67K Get Help
- 441 Global Discussions
- 154 Industry Talk
- 502 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 79 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!