Overdue, Late Start indicators based on multiple criteria
I am trying to populate indicators if a task is overdue, late start or has a schedule variance based on the below criteria but the formula I have is return unparseable. I think I might need an OR feature?
=IF(AND(TODAY() < Finish@row, [Actual Completion Percentage %]@row < 1), "OD"), IF(AND(TODAY()>Start@row, [Actual Completion Percentage %]@row =0), "LS"), IF(AND(TODAY()<[Baseline Start]@row, [Schedule Variance]@row>=.8), "SV"))
Today < Finish Date and Actual Completion Percentage % is '<1 then the task is OD (Overdue)
and IF Today > Start Date and Actual Completion Percentage % =0, then the task has a LS (Late Start)
IF Today is <Baseline Start, Schedule Variance >= 0.8, the the task has a SV (Schedule Variance)
Answers
-
@Melissa Torrez I haven't taken much time to look into your logic, but I see some issues with your formula. You have some parentheses in the wrong places.
Try this:
=IF(AND(TODAY() < Finish@row, [Actual Completion Percentage %]@row < 1), "OD", IF(AND(TODAY()>Start@row, [Actual Completion Percentage %]@row =0), "LS", IF(AND(TODAY()<[Baseline Start]@row, [Schedule Variance]@row>=.8), "SV")))
Darren Mullen, join the Smartsheet Guru Elite
Get my 7 Smartsheet tips here
Author of: Smartsheet Architecture Solutions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!