Hi,
I have been reading other posts and trying to create formula to automate the RYG balls in my project plan, but am not having much luck. Can anyone help me with creating a formula for the following conditions - I have also put I built so far for each condition:
- If Status is Not Started and Start Date is before Today then Health is Green
- IF(AND(Status@row = "Not Started", [Start Date]@row > TODAY()), “Green”
- If Status is Not Started and Start Date is Today or in the past 7 days than Yellow
- IF(AND(Status@row = "Not Started", [Start Date]@row = TODAY()), "Yellow",
- If Status is Not Started and Start Date is more than 7 days in the past than Red
- IF(AND(Status@row = "Not Started", [Start Date]@row < TODAY + 7()), "Red",
- If Status is In Process and End Date is before Today than Green
- IF(AND(Status@row = "In Process", [End Date]@row > TODAY()), “Green”
- If Status is In Process and End Date is Today or in the past 7 days than Yellow
- IF(AND(Status@row = "In Process", [End Date]@row = TODAY()), "Yellow",
- If Status is In Process and End Date is more than 7 days in the past than Red
- IF(AND(Status@row = "In Process", [Start Date]@row < TODAY + 7()), "Red",
- If Status is Complete than Green
- IF(Status@row = "Complete"), “Green”
- If Status is On Hold than Grey
- IF(Status@row = "On Hold"), “Grey”
- If Status is N/A than Blank
- IF(Status@row = ""), “Blank”
I also want to apply this formula to only certain cells in the "Health" column, what is the best way to do this?
Thanks for any help I can get!
Amy