Forum Discussion
Write a value to table based on column matching
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??
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
2 Replies
- Whitewater100Solution Sage
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
- AnonymousNot applicable
This did the trick, thank you!!