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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DAX - Measure to get Count of child Id's for a given Parent

Hello Team,

 

We have a DB table with following fields, that have Parent-Child hierarchy. 

Source TableSource TableOur reporting requirement is to come up with following tabular visualization, to display only parent Id Categories (C1,C2,C3) with count of child_id’s associated to my Parent. Something as follows:  

Final OutputFinal Output

So, when I select Id -1, the measure should provide the count of child_id’s for it, which is 2 in this case.

I’m SQL guy and very new to DAX, this can be done using a self-join for Id to ParentId in SQL.

Can anyone please provide a DAX expression for the same?

 

Thanks,
Sundeep

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

hi @Anonymous 

 

Try this method

 

First a calculated column

 

PATH =
PATHITEM ( PATH ( TableName[Id], TableName[ParentId] ), 1, INTEGER )
Now this MEASURE
 
No. of Children =
VAR myvalue =
    SELECTEDVALUE ( TableName[Id] )
VAR mycategory =
    SELECTEDVALUE ( TableName[Category] )
RETURN
    CALCULATE (
        COUNT ( TableName[PATH] ),
        TableName[PATH] = myvalue,
        TableName[Category] <> mycategory,
        ALL ( TableName )
    )

Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Please see attached file as well with your sample data and results

 


Regards
Zubair

Please try my custom visuals
Zubair_Muhammad
Community Champion
Community Champion

hi @Anonymous 

 

Try this method

 

First a calculated column

 

PATH =
PATHITEM ( PATH ( TableName[Id], TableName[ParentId] ), 1, INTEGER )
Now this MEASURE
 
No. of Children =
VAR myvalue =
    SELECTEDVALUE ( TableName[Id] )
VAR mycategory =
    SELECTEDVALUE ( TableName[Category] )
RETURN
    CALCULATE (
        COUNT ( TableName[PATH] ),
        TableName[PATH] = myvalue,
        TableName[Category] <> mycategory,
        ALL ( TableName )
    )

Regards
Zubair

Please try my custom visuals
Anonymous
Not applicable

Thank you Zubair, this worked. Thanks a bunch for attaching the sample report as well.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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