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

Join 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.

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
Super User
Super User

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
Super User
Super User

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
Super User
Super User

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.