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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Setting a variable in LOOKUPVALUE

Hi, 
I need to define a variable for the <result_columnName> in LOOKUPVALUE.  
I am working with 2 tables: Job Titles (JT) with Regional Rates (RR) and Employees with their JT and RR.  In Excel I created an IF statement in the Employee table to provide VLOOKUP the column it needs to find the RR.  VLOOKUP would return the Employees RR.

Formulas in Excel in Employee Table

"If(RR=R1,2,IF(RR=R2,3,IF(RR=R3,4,)))"

"VLOOKUP(A2,JobTitles!A2:5,D2,False)"

Employee Table

Employee Table.jpg

Job Table

Job Table.jpg

 

Thanks for the help

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

You should unpivot the second table: https://radacad.com/pivot-and-unpivot-with-power-bi

Then you will able to use lookup

https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

You should unpivot the second table: https://radacad.com/pivot-and-unpivot-with-power-bi

Then you will able to use lookup

https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thank you,

Onces Pivoted I was able to successfully build a measure and a column.
For the Measure I needed to create 2 variable measures

"MAX('Employee Table[Job Title])" and

"MAX('Employee Table[Rate ID])"

then I created the measure

"LOOKUPVALUE('JobTable[Rate Value], 'JobTable[Job Title}, Measure[Job Title], JobTable[Rate ID}, Measure[Rate])"

For the column I didn't need the measure names and used the column names from the Employee Table.

Anonymous
Not applicable

Hi, 

 

sometimes it makes sense to restructure your data to work best with Power BI . I would unpivot the data in the Job Type / Rate Matrix, so you have a row for each rate per job.   as you are using 2 columns to lookup then you could use SELECTCOLUMNS to return a value into a new column in your table from the rate table using the Job Type and Rate as filters. 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors