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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Kudoed Authors