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, smartsheetguru.com
Get my 7 Smartsheet tips here
Author of: Smartsheet Architecture Solutions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 379 Global Discussions
- 213 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!