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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Gijs93
New Member

Count the number of related records

Hi, 

 

I am struggling with a calculation in DAX. I want to add the column "Children" to my dataset (I have one fact_Table, as displayed below). For example, ID 2 shows up twice under Parent and therefore has 2 children. So the number of times the ID value pops up in other rows is the amount of Children records. 

 

I used COUNTROWS and LOOKUPVALUE to no avail, I am hoping anyone here knows how to calculate this column. 

 

Fact_Table

ID

Type

Parent

Status

Children

1

A

2

D

1

2

B

6

I

2

3

C

2

I

1

4

D

1

D

1

5

C

3

T

0

 

Thank you in advance, 
Best,

Gijs 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[Children] = // calculated column
var CurrentID = FT[ID]
var Result =
    COUNTROWS(
        FILTER(
            FT,
            FT[Parent] = CurrentID
        )
    )
RETURN 
    Result

View solution in original post

1 REPLY 1
Anonymous
Not applicable

[Children] = // calculated column
var CurrentID = FT[ID]
var Result =
    COUNTROWS(
        FILTER(
            FT,
            FT[Parent] = CurrentID
        )
    )
RETURN 
    Result

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.