Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next 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

Reply
AdityaG
Helper I
Helper I

How to count no. of items within a subgroup?

Hi all,

 

Need a dynamic DAX that can count the no. of items within a category. Following is a sample data:

 

Level 1Level 2
Aa1
Aa2
Bb1
Bb2
Aa3
Aa4
Cc1
Cc2
Cc3

 

Result should be something like this:

 

Level 1Count
A4
B2
C3

 

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 1Level 2
Aa1
Aa2
Bb1
Bb2
Aa3
Aa4
Cc1
Cc2
Dd1
C

c3

 

The result should then be:

Level 1Count
A4
B2
C3
D1
1 ACCEPTED SOLUTION
FreemanZ
Community Champion
Community Champion

or you create a calculated table like:

table =
ADDCOLUMNS(
    VALUES(data[level 1]),
    "Count",
    CALCULATE(COUNTROWS(data))
)
FreemanZ_1-1684566499375.png

View solution in original post

4 REPLIES 4
FreemanZ
Community Champion
Community Champion

or you create a calculated table like:

table =
ADDCOLUMNS(
    VALUES(data[level 1]),
    "Count",
    CALCULATE(COUNTROWS(data))
)
FreemanZ_1-1684566499375.png

Thanks! This helps.

FreemanZ
Community Champion
Community Champion

hi @AdityaG 

 

try to plot a table visual with level1 column and a measure like:

count = COUNTROWS(data)

 

it worked like:

FreemanZ_0-1684566406085.png

 

I needed just like your 1st solution (which I've accepted), of adding a measured column to the table. 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.