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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
sag_tyd
Frequent Visitor

Look up data and append to same row within table

Hello Experts,

 

I have an interesting use case where I have data contained in a table, but the data does not contain a certain level of information that I need for visualization purposes. I need to somehow search through the table based on one column and append the results of a different row to the original row. Bit hard to explain so here's an example:

 

I have the following data set:

IDNameFriend ID
1Alex3
2Joe3
3Bob1
4Phil2
5Marknull

 

I want to add a "Friend Name" column as such:

IDNameFriend IDFRIEND NAME
1Alex3Bob
2Joe3Bob
3Bob1Alex
4Phil2Joe
5Marknullnull

 

However, I cannot figure out how to do this. The iterative process of looking at each row individually and then searching through the table is tripping me up. 

 

Thanks for your help!

1 ACCEPTED SOLUTION
sevenhills
Super User
Super User

If you want the column in DAX, you can do as below: Say, your table is 

Parent_Child_Lookup

 

Friend Name = LOOKUPVALUE(Parent_Child_Lookup[Name], Parent_Child_Lookup[ID], Parent_Child_Lookup[Friend ID], BLANK())

 

sevenhills_0-1686163715500.png

 

View solution in original post

3 REPLIES 3
sevenhills
Super User
Super User

If you want the column in DAX, you can do as below: Say, your table is 

Parent_Child_Lookup

 

Friend Name = LOOKUPVALUE(Parent_Child_Lookup[Name], Parent_Child_Lookup[ID], Parent_Child_Lookup[Friend ID], BLANK())

 

sevenhills_0-1686163715500.png

 

That worked perfectly! Thank you very much! I knew it was something simple using the LOOKUPVALUE function, I just couldn't figure it out. Much appreciated. 

Glad to hear that it worked ! Thanks

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.