Hi Stefan,
One way to handle this without having to resort to Excel or Power-BI would be as follows:
- create a custom calculated parameter called "Leadership Assessment" on your Project Custom form(s)
- set its calculation to the formula below
- ensure every project of interest has that form attached to it
- build a Project report that groups and charts by Leadership Assessment
Optionally, you could include only Projects with values of "Starting", "Completing" or "Running" in your report. You could also refine the Leadership Assessment even further (e.g. On Hold, Running Late, etc.) to be more precise. And you might want to consider using Projected Dates rather than Planned Dates, as doing so might better represent when things are projected to happen, rather than were planned to happen.
And finally, to ensure the data stays current, I'd recommend you periodically refresh the calculations periodically either manually, or using either our Recalc Helper or Recalc Parameters solutions.
I'm interested to hear how you make out -- good luck!
Regards,
Doug
----------------------------------
IF(ISBLANK(Actual Completion Date)
,IF(Planned Start Date > $$TODAY
, IF(Planned Start Date < $$TODAY+3m
,"Starting"
,IF(Planned Completion Date > $$TODAY
,IF(Planned Start Date < $$TODAY+3m
, "Completing"
,"Running"
)"Running"
)
)
,IF(Planned Completion Date > $$TODAY
,IF(Planned Start Date < $$TODAY+3m
, "Completing"
,"Running"
)"Running"
)
)
,"Completed"
)