Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Each project has stages, and each stage has tasks. Each task has a task completion %.
I'm currently using a normal Average Formula -
so, when I look at the value at the stage level, I expect to get for each stage (60+20) / 2 tasks = 40%
But instead I get 5%
What am I doing wrong?
Solved! Go to Solution.
Hi @Nindo ,
Use the below measure:
Stage/Task/Phase Completed % =
CALCULATE (
AVERAGE ( Table[Task Complete %] ),
FILTER ( ALLSELECTED ( Table ), Table[stage name] = MAX ( Table[stage name] ) )
)
Mark this as a solution, if I answered your question. Kudos are always appreciated.
Thanks
Hi @Nindo ,
Use the below measure:
Stage/Task/Phase Completed % =
CALCULATE (
AVERAGE ( Table[Task Complete %] ),
FILTER ( ALLSELECTED ( Table ), Table[stage name] = MAX ( Table[stage name] ) )
)
Mark this as a solution, if I answered your question. Kudos are always appreciated.
Thanks