Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
The file I am working with has data from one table with an ID number (ctp), then on another data set I have the same ID numbers (ID) with their location names(name). What I'm trying to do is have the locations be put on the original table next to their correlating ID numbers. I'm not sure how to get this to work in the power bi tables. I've tried dax expressions but haven't found and success. Feedback would be greatly appreciated.
This table has the dealID that I am trying get the location names for.
This is the original table
This table has the (ID) numbers that correlate with the (ctp) numbers from the previous table, and I want to create a function that returns the names on the previous table.
This is the table that converts the ctp number to the location
Solved! Go to Solution.
Have you tried creating a calculated column using the LOOKUPVALUE function?
Location =LOOKUPVALUE(table2[address],table2[ID],table1[ctp])
Have you tried creating a calculated column using the LOOKUPVALUE function?
Location =LOOKUPVALUE(table2[address],table2[ID],table1[ctp])
Worked Thanks!
@oberkery Great! If you could mark my response as the solution, I'd appreciate it.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |