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
zgardner7
Regular Visitor

Create Parent IDs via a Calculated Column in DAX

Hello,

 

I have data in the following format:

initialData.PNG

I need to create a parent child relationship. Source A is transformed into Target B. There is no transformation occuring before this, so the first row will not have a parent ID. In the second row, the source is B, which was the target of the first transformation in the table, so I want the parent ID to be 1 for this row. My desired outcome is shown below.

finalData.PNG

Any assistance would be greatly appreciated!

 

Best,

 

ZG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @zgardner7

 

Try this

 

ParentID = 
VAR inCalc = CALCULATE(MIN('Parent'[ID]),FILTER('Parent','Parent'[Target]= EARLIER('Parent'[Source])))
RETURN
IF(ISBLANK(inCalc),0,inCalc)

 

Output is :

Parent.PNG

 

Thanks
Raj

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @zgardner7

 

Try this

 

ParentID = 
VAR inCalc = CALCULATE(MIN('Parent'[ID]),FILTER('Parent','Parent'[Target]= EARLIER('Parent'[Source])))
RETURN
IF(ISBLANK(inCalc),0,inCalc)

 

Output is :

Parent.PNG

 

Thanks
Raj

Thank you!

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