Multiple LOOK UPs

BPM Aditya

New Member
Joined
Mar 15, 2010
Messages
12
I have excel sheets. Normally when we Vlook up, we use the following formula
VLOOKUP(A4,'HCV TL'!A3:R12,2,FALSE),
where
1. A4 is the look up value in 1st sheet,
2. 'HCV TL'!A3:R12' is the look up range in 2nd sheet
3. 2 is the column number from which the value is to be returned
4. FALSE is for exact match.

Now I want to look up 2 values at a time (For e.g along with A4, I walso want to look up another value (say B4)), then I want a value to be returned from 2nd sheet from the corresponding row or column by satisfying the 2 conditions.

Please suggest a formula.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
you could create a helper column which joins A4 and B4 and use this in the lookup
 
Upvote 0
I have excel sheets. Normally when we Vlook up, we use the following formula
VLOOKUP(A4,'HCV TL'!A3:R12,2,FALSE),
where
1. A4 is the look up value in 1st sheet,
2. 'HCV TL'!A3:R12' is the look up range in 2nd sheet
3. 2 is the column number from which the value is to be returned
4. FALSE is for exact match.

Now I want to look up 2 values at a time (For e.g along with A4, I walso want to look up another value (say B4)), then I want a value to be returned from 2nd sheet from the corresponding row or column by satisfying the 2 conditions.

Please suggest a formula.
A4 is matched against 'HCV TL'!A3:A12. Care also to specify the match range for B4? And what is the result range, that is, the range from which a result must be returned?

Or try adapt the following generic formula:

=INDEX(ResultRange,MATCH(1,IF(MatchRange1=A4,IF(MatchRange2=B4,1)),0))

which must be confirmed with control+shift+enter, not just enter.
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,259
Members
452,626
Latest member
huntinghunter

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top