Multiple Criteria lookup? (multiple combinations)

curiousgeorgeuk

New Member
Joined
Dec 14, 2017
Messages
5
Firstly, Thank you for accepting on the board, New here. Have a reasonable understanding to Excel, though I have come across a something I just cant figure out.

I will try explain as clear as possible and what I am trying to do.

I am trying to populate column 10 with a value from another sheet based on criteria from column 1, 2, 3.

Column 1 2 3 4 5
Test 1 V1B1
Test 2 V2B2
Test 3V3B3
Test 4 V4B4
Test 5 V5B5

<tbody>
</tbody>

The above sheet is a simplified version of my sheet, I want to return a result in column 5 based on ANY combination of Column 1, 2, 3 from sheet 2 (see table below

Test 1 V1 B1£100.00
Test 1 V2B1£50.00
Test 1 V3B1£25.00

<tbody>
</tbody>


I would normally do this with vlookup and if statement, but that would just get crazy long.

Hope that makes sense.

Thanks

******** type="text/javascript" src="safari-extension://com.ebay.safari.myebaymanager-QYHMMGCMJR/e3b22f70/background/helpers/prefilterHelper.js">*********>******** type="text/javascript" src="safari-extension://com.ebay.safari.myebaymanager-QYHMMGCMJR/e3b22f70/background/helpers/prefilterHelper.js">*********>
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Welcome to the board.

In J1:

=IFERROR(INDEX(Sheet2!$D$1:$D$10,MATCH(A1&"|"&B1&"|"&C1,Sheet2!$A$1:$A$10&"|"&Sheet2!$B$1:$B$10&"|"&Sheet2!$C$1:$C$10,0)),"No match")
and confirm it with Control+Shift+Enter. Depending on your regional settings, you may need to change the commas to semicolons.
 
Upvote 0
Thankyou!

Took a couple of attempts to modify to my sheet and wording, but once done works perfect!

******** type="text/javascript" src="safari-extension://com.ebay.safari.myebaymanager-QYHMMGCMJR/e3b22f70/background/helpers/prefilterHelper.js">*********>******** type="text/javascript" src="safari-extension://com.ebay.safari.myebaymanager-QYHMMGCMJR/e3b22f70/background/helpers/prefilterHelper.js">*********>
 
Upvote 0

Forum statistics

Threads
1,217,367
Messages
6,136,146
Members
449,994
Latest member
Rocky Mountain High

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