Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a dax code the get the relationship for parent and child
| Child | Parent | Value | Relation | Results |
| 2001 | 2002 | 10 | 2001 | 10 |
| 2002 | 2003 | 15 | 2001|2002 | 25 |
| 2003 | 2004 | 20 | 2001|2002|2003 | 45 |
| 2004 | 2005 | 25 | 2001|2002|2003|2004 | 70 |
| 2005 | 2006 | 30 | 2001|2002|2003|2004|2005 | 100 |
| 2006 | 2007 | 35 | 2001|2002|2003|2004|2005|2006 | 135 |
| 2007 | 2008 | 40 | 2001|2002|2003|2004|2005|2006|2007 | 175 |
| 2008 | 2009 | 10 | 2001|2002|2003|2004|2005|2006|2007|2008 | 185 |
| 2009 | 15 | 2001|2002|2003|2004|2005|2006|2007|2008|2009 | 200 | |
| 2010 | 2011 | 20 | 2010 | 20 |
| 2011 | 25 | 2010|2011|2012|2013|2014|2015|2016 | 245 | |
| 2012 | 2011 | 30 | 2012|2013|2014|2015|2016 | 200 |
| 2013 | 2012 | 35 | 2013 | 35 |
| 2014 | 2012 | 40 | 2014 | 40 |
| 2015 | 2012 | 45 | 2015|2016 | 95 |
| 2016 | 2015 | 50 | 2016 | 50 |
Solved! Go to Solution.
P is a calculated column
P = path('Table'[Child],'Table'[Parent])
Res is a measure
Res =
var c = SELECTEDVALUE('Table'[Child])
var a= SUMMARIZE(ALLSELECTED('Table'),[Value],[P])
var b= ADDCOLUMNS(a,"inc",IF(PATHCONTAINS([P],c),[Value]))
return sumx(b,[inc])
P is a calculated column
P = path('Table'[Child],'Table'[Parent])
Res is a measure
Res =
var c = SELECTEDVALUE('Table'[Child])
var a= SUMMARIZE(ALLSELECTED('Table'),[Value],[P])
var b= ADDCOLUMNS(a,"inc",IF(PATHCONTAINS([P],c),[Value]))
return sumx(b,[inc])
@lbendlin , hi again, i use the same code to count the values
Please provide sample data that fully covers your issue.
Please show the expected outcome based on the sample data you provided.
@lbendlin hi again, below should be the output table in column Result_Count and Result_Sum
I also have an issue, error showing, if i change the child and parent value as text.
Is there's a way that instead of showing in column Relation as Child/Parent as number should be the child/parent name instead. Thanks again.
Can you please post in a usable format? I can't work with screenshots.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 10 | |
| 8 |