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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rjausma
Helper I
Helper I

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
3 REPLIES 3
amitchandak
Super User
Super User

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.

danno
Resolver V
Resolver V

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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