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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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