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 dateJoin 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.
Hello,
I have a table named XYZ and columns A and B as below -
A | B |
Delhi | 1 |
Delhi | 2 |
Delhi | 3 |
Mumbai | 1 |
Jaipur | 2 |
Jaipur | 3 |
Hyderabad | 1 |
Chennai | 2 |
Nagpur | 3 |
Nagpur | 4 |
I need count of column B grouped by A as below -
A | Count of B |
Delhi | 3 |
Mumbai | 1 |
Jaipur | 2 |
Hyderabad | 1 |
Chennai | 1 |
Nagpur | 2 |
and then need to show the Count of B > 1 in a tile in power bi. Could anyone please help me with this using DAX formula ?
Here result would be 3.
This is very easy in SQL but I am struggling in Power BI.
Thanks in advance !!
Solved! Go to Solution.
You can try this DAX to get your result:
Count_B_Greater_Than_1 =
CALCULATE(
COUNTROWS(
FILTER(
SUMMARIZE('Table', 'Table'[A], "Count_B", COUNT('Table'[B])),
[Count_B] > 1
)
)
)
Best Regards,
Muhammad Yousaf
If this post helps, then please consider "Accept it as the solution" to help the other members find it more quickly.
Thank you for helping so quickly 🙂 I really apreciate your efforts on this.
You can try this DAX to get your result:
Count_B_Greater_Than_1 =
CALCULATE(
COUNTROWS(
FILTER(
SUMMARIZE('Table', 'Table'[A], "Count_B", COUNT('Table'[B])),
[Count_B] > 1
)
)
)
Best Regards,
Muhammad Yousaf
If this post helps, then please consider "Accept it as the solution" to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |