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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have 3 tables, each one is a parent of other.
Initiative-->Epic -->Feature
All these tables have a column named "Status".
The column "status" has 2 values "Done" or "Inprogress"
I need a card which shows the completion status in % of a epic.
For example, a epic has 4 features, out of these, 2's status is "Done" and remaining 2's status is "Inprogress".
So, in card it should show as 50% of a selected epic
Kindly help me here,
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous ,
Sorry, still not very clear. Could you go into more detail and provide some simple sample data and the corresponding expected results? Thank you.
Which state do you want to calculate the percentage?
percentage = var _totalgroupbyepic=COUNTROWS(FILTER(ALLSELECTED('Table'),[epic]=MAX('Table'[epic])))
var _count=COUNTROWS(FILTER(ALLSELECTED('Table'),[status]="Done"&&[epic]=MAX('Table'[epic])))
return DIVIDE(_count,_totalgroupbyepic)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Sorry, still not very clear. Could you go into more detail and provide some simple sample data and the corresponding expected results? Thank you.
Which state do you want to calculate the percentage?
percentage = var _totalgroupbyepic=COUNTROWS(FILTER(ALLSELECTED('Table'),[epic]=MAX('Table'[epic])))
var _count=COUNTROWS(FILTER(ALLSELECTED('Table'),[status]="Done"&&[epic]=MAX('Table'[epic])))
return DIVIDE(_count,_totalgroupbyepic)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Your solution is right.
Thank you for your reply : )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |