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
Negi1984
Regular Visitor

Power Query Lookup range changed based on Cell value

Hi All,

I have a Master sheet having wk number mentioned in first column. I want to apply vlookup on name based on value mentioned in Wk number column.

For example :- if wk number is less than 26 than vlookup apply from Group 1 sheet and pick the "Current Hrs" value based on Resource Name otherwise from Group 2 sheet.

can anybody suggest me , how dynamically we can change the lookup table and pick the value.

Below is the sample data.

https://1drv.ms/x/s!Ap80Ku6M2Tw5gTyVsOwG-9-qNL-2

Regards,
Rajender

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Negi1984,

 

It would be much easier to achieve that via DAX. Please new a calculated column in Master sheet:

Column =
IF (
    'Master Sheet'[Week no] < 26,
    LOOKUPVALUE (
        Group1[Current Hrs],
        Group1[Resource Name], 'Master Sheet'[Resource Name]
    ),
    LOOKUPVALUE (
        Group2[Current Hrs],
        Group2[Resource Name], 'Master Sheet'[Resource Name]
    )
)

1.PNG

 

However, if you want to do that via Power Query, you may need to create a custom VLOOKUP function.

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @Negi1984,

 

It would be much easier to achieve that via DAX. Please new a calculated column in Master sheet:

Column =
IF (
    'Master Sheet'[Week no] < 26,
    LOOKUPVALUE (
        Group1[Current Hrs],
        Group1[Resource Name], 'Master Sheet'[Resource Name]
    ),
    LOOKUPVALUE (
        Group2[Current Hrs],
        Group2[Resource Name], 'Master Sheet'[Resource Name]
    )
)

1.PNG

 

However, if you want to do that via Power Query, you may need to create a custom VLOOKUP function.

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks a lot Yuliana for your valuable support.

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.