This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Team,
I need a quick help. I have two tables with one has unique values and another has multiple values.
I need to to repeat my LOOKUPVALUE for all the duplicates reocrds as it is going to repeat same value only. Currently it is giving me one value for each record without making any relationship between them.
Here is table where I weant to pull all the respective Project Names:
TableA:
| ProjectID |
| 101 |
| 101 |
| 101 |
| 102 |
| 103 |
| 103 |
| 104 |
TableB:
| ProjectId | ProjectName |
| 101 | P1 |
| 102 | P2 |
| 103 | P3 |
| 104 | P4 |
Expected Output [Without making any active relatiosnhip between these two tables]
| ProjectID | ProjectName |
| 101 | P1 |
| 101 | P1 |
| 101 | P1 |
| 102 | P2 |
| 103 | P3 |
| 103 | P3 |
| 104 | P4 |
What I am getting using LOOKUPVALUE is:
| ProjectID | ProjectName |
| 101 | P1 |
| 101 | |
| 101 | |
| 102 | P2 |
| 103 | P3 |
| 103 | |
| 104 | P4 |
Basically, it is not reapeting the output for each duplicate value - ideally, it should wokr very similar to Vlookup in excel.
Please help
Thanks,
Ram
Solved! Go to Solution.
@Ram_DCT ,
New column in table A
Maxx(filter(TableB, TableA[ProjectID] = TableB[ProjectID]), TableBProjectName])
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
@Ram_DCT ,
New column in table A
Maxx(filter(TableB, TableA[ProjectID] = TableB[ProjectID]), TableBProjectName])
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |