Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 10 | |
| 5 | |
| 5 |