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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors