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
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!