Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Team,
I am having table with two fileds :
Name | Planid |
A | 1 |
A | 2 |
B | 1 |
c | 1 |
c | 2 |
c | 3 |
Need to calculate count in measure like below screen shot
Name | Planid | Count |
A | 1 | 2 |
A | 2 | 2 |
B | 1 | 1 |
c | 1 | 3 |
c | 2 | 3 |
c | 3 | 3 |
Hi @Anonymous
Try this measure:
Count =
CALCULATE ( COUNT ( 'Table'[Name] ), ALL ( 'Table'[Planid] ) )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos ✌️!!
This is giving count of names but i need count of distinct planid for each name like below (Count column is expected)
Name | Planid | Count |
A | 1 | 2 |
A | 2 | 2 |
B | 1 | 1 |
c | 1 | 2 |
c | 2 | 2 |
c | 2 | 2 |
Hi @Anonymous
Try this measure:
Count =
CALCULATE ( DISTINCTCOUNT( 'Table'[Planid] ), ALLEXCEPT( 'Table','Table'[Name]))
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
Hi @Anonymous ,
Try this measure:
Count= CALCULATE(COUNT(Table[Name]), ALL(Table[Planid]))
Thanks
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |