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 all,
Need a dynamic DAX that can count the no. of items within a category. Following is a sample data:
Level 1 | Level 2 |
A | a1 |
A | a2 |
B | b1 |
B | b2 |
A | a3 |
A | a4 |
C | c1 |
C | c2 |
C | c3 |
Result should be something like this:
Level 1 | Count |
A | 4 |
B | 2 |
C | 3 |
Please don't assume that A,B,C are the only Level 1s, as it might change as new data comes in.
The same DAX should work for following change as well (Let's say a 4th Level 1 comes in)
Level 1 | Level 2 |
A | a1 |
A | a2 |
B | b1 |
B | b2 |
A | a3 |
A | a4 |
C | c1 |
C | c2 |
D | d1 |
C | c3 |
The result should then be:
Level 1 | Count |
A | 4 |
B | 2 |
C | 3 |
D | 1 |
Solved! Go to Solution.
or you create a calculated table like:
or you create a calculated table like:
Thanks! This helps.
hi @AdityaG
try to plot a table visual with level1 column and a measure like:
count = COUNTROWS(data)
it worked like:
I needed just like your 1st solution (which I've accepted), of adding a measured column to the table.
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 |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |