Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 28 | |
| 19 | |
| 11 | |
| 10 |