Help with a Formula
Good Morning - I'm hoping someone can help me with the following formula. I have a column which indicates if a task is - In Queue, In Progress, Completed, Late. It is set up as a drop down column type. I'm trying to write a formula that would populate this column based on the % complete and the start date. Here is what I'm trying to do -
If the % complete is 100% - then populate the Status Column - "Complete"
If the % complete is not 100% - then populate the Status Column - "In Progress:
If the % complete is equal to 0% and the start date is before today - then populate the Status Column - "Late"
If the % complete is equal to 0% and the start date is after today - then populate the Status Column - 'In Queue"
Here is what I've come up with but it's not working 😴
=IF([% Complete]46 = 1, "Complete", IF(AND[% Complete]46 = 0, [Start Date]46 >TODAY()), "In Queue", IF(AND[% Complete]46 = 0, [Start Date]46 <TODAY()), "Late", "In Progress")
Any help would be appreciated.
Thanks.
Kathy
Best Answer
-
Try this...
=IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress", IF([Start Date]@row < TODAY(), "Late", "In Queue")))
Answers
-
Try this...
=IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress", IF([Start Date]@row < TODAY(), "Late", "In Queue")))
-
It worked perfectly! Thank you so much Paul. Very much appreciated.
Hope you have a great day.
Kathy
-
Happy to help. 👍️
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
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!