Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
kennedy311
Advocate I
Advocate I

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??

1 ACCEPTED SOLUTION
Whitewater100
Solution Sage
Solution 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

View solution in original post

2 REPLIES 2
kennedy311
Advocate I
Advocate I

This did the trick, thank you!!

Whitewater100
Solution Sage
Solution 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

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors