This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Dear All,
I am using below table to get percantage of the sprint
| Sno | Issues | Status | Sprint |
| 1 | 768 | Done | Sprint6 |
| 2 | 888 | Done | Sprint6 |
| 3 | 666 | QA in Progress | Sprint6 |
| 4 | 999 | Deployed in Prod | Sprint6 |
| 5 | 567 | Done | Sprint5 |
| 6 | 900 | Done | Sprint5 |
| 7 | 100 | In-Progress | Sprint5 |
would like to have a one calucalted column for the below table that tells about the perceantge of number of issues done in the each sprint such as below
if (Table[Sprint]="Sprint6") than (total issues where status is done & where sprint=6 )/( total issues where sprint=6) else
if (Table[Sprint]="Sprint5") than (total issues where status is done & where sprint=5 )/( total issues where sprint=5) else
if (Table[Sprint]="Sprint4") than (total issues where status is done & where sprint=5 )/( total issues where sprint=4) else
Can any one please help me how can I make it.
Regards,
SAM_
Solved! Go to Solution.
Hi,
These measures work
Total = COUNTROWS(Data)Done = CALCULATE([Total],Data[Status]="Done")Done (%) = DIVIDE([Done],[Total])
Hope this helps.
Hi @Anonymous
If I understood you correctly and the goal is to show the percentage of "Done" by sprint you can use the measures :
1.
if it is something else plese
Pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi @Anonymous
If I understood you correctly and the goal is to show the percentage of "Done" by sprint you can use the measures :
1.
if it is something else plese
Pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi,
These measures work
Total = COUNTROWS(Data)Done = CALCULATE([Total],Data[Status]="Done")Done (%) = DIVIDE([Done],[Total])
Hope this helps.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 22 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 43 | |
| 41 | |
| 41 | |
| 21 | |
| 21 |