Formula Recommendations
I’m constructing a post project review dashboard and would like to highlight projects that fall within the planned project timeline estimate and the actual completion date.
I have a project In-Take sheet that has the following columns that I believe I can use in a formula to provide me the visual indicator to be displayed in reports and dashboards.
I need to compare project start date to the project completion date and then determine if the result falls within a project complexity timeframe.
I could use some help constructing a formula that would achieve my end goal.
Current columns
- Project Status (Report should only include Complete)
- Project Complexity (High, Med, Low)
- Project Active Date
- Project Complete Date
Potential additional columns
- Scope of Work estimate in Months (not currently in my intake sheet but I’m thinking of adding it so I can build in more flexibility by project vs. a flat High = X months, Med = Y, & Low =Z)
- Planned vs. Actual Status (RYG ball vs. setting the background color of Project Complexity column)
- Others? (Based on TBD design recommendations)
The below pseudo code seems to look like it might work if I can get a formula constructed to match.
If Project Status@row is Complete and Project Complexity@row is High and the difference between the Project Active Date@row and the Project Complete Date@row exceeds 18 months, then set the background color of Project Complexity@row column Red. & if difference between the Project Active Date and the Project Complete Date is greater than 12 months and less than 18 months, then set the background color of Project Complexity@row column Yellow, else Green.
If Project Status@row is Complete and Project Complexity@row is Med and the difference between the Project Active Date@row and the Project Complete Date@row exceeds 12 months, then set the background color of Project Complexity@row column Red. & if difference between the Project Active Date and the Project Complete Date is greater than 6 months and less than 12 months, then set the background color of Project Complexity@row column Yellow, else Green.
If Project Status@row is Complete and Project Complexity@row is Low and the difference between the Project Active Date@row and the Project Complete Date@row exceeds 8 months, then set the background color of Project Complexity@row column Red. & if difference between the Project Active Date and the Project Complete Date is greater than 6 months and less than 8 months, then set the background color of Project Complexity@row column Yellow, else Green.