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! Learn more
I'm not sure I'm asking the question correctly, but here it goes:
I have two tables. Table1 has these columns:
Client Name
Unique ID
Previous Year's Revenue
Table2 has:
Client Name
...and a bunch of other columns not relevant here
I am trying to pull the Unique ID and PY Revenue values from Table1 into Table2, by matching on Client Name. I can't quite figure out how to do this without throwing errors. And yes...I have to match on Client Name in this case. Help??
Solved! Go to Solution.
Hi:
Besides merging the two tables in Power Query you can try as calculated columns in Table 2.
Unique ID = LOOKUPVALUE(Table1[Unique ID], Table1[Client Name], Table2[Client Name])
and then rpeat same pattern for PY revenue.
PY Rev = LOOKUPVALUE(Table1[Previous Years Revenue], Table1[ClientName], Table2[ClientName])
I hope this solves this for you. Thanks
This did the trick, thank you!!
Hi:
Besides merging the two tables in Power Query you can try as calculated columns in Table 2.
Unique ID = LOOKUPVALUE(Table1[Unique ID], Table1[Client Name], Table2[Client Name])
and then rpeat same pattern for PY revenue.
PY Rev = LOOKUPVALUE(Table1[Previous Years Revenue], Table1[ClientName], Table2[ClientName])
I hope this solves this for you. Thanks
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |