Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Guys, I want to create a measure. In the above pic, you can see Sprint number column and category and count(id) column. so the required measure is, for each sprint number I want the total count of category. there you can see for 331 sprint numbers, in category punted issues, issues added, completed issues, issues not completed there are of total count in count(id) column is 11+5+1+14=31. so I need a measure like for 331 there is a total of 31 issues, for next 338 there ---- issues. I need a measure like this .counting of category for each sprint number. Not Only measure . how It can be achieved
Solved! Go to Solution.
Hey @Anonymous ,
from your example I understood that you want the sum of COUNT(ID) by SPRINT_NUMBER, is that right?
The following measure should do that:
Count per Sprint =
CALCULATE(
SUM( myTable[COUNT(ID)] ),
ALLEXCEPT(
myTable,
myTable[SPRINT_NUMBER]
)
)
Hey @Anonymous ,
did it work with the measure I proposed?
I'm curious if you could solve this issue 🙂
Hey @Anonymous ,
from your example I understood that you want the sum of COUNT(ID) by SPRINT_NUMBER, is that right?
The following measure should do that:
Count per Sprint =
CALCULATE(
SUM( myTable[COUNT(ID)] ),
ALLEXCEPT(
myTable,
myTable[SPRINT_NUMBER]
)
)
Hey @Anonymous ,
did it work with the measure I proposed?
I'm curious if you could solve this issue 🙂
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
9 |