Combining IF/Index/Match over two sheets with multiple criteria

winter8806

New Member
Joined
Jun 28, 2018
Messages
6
Hello everyone,
I am trying to get a formula that will pull a price based on two pieces of criteria, one being the product and the other quantity. For example, I have a part number of 880 (A15) and a quantity of 15(G15), I need the price returned (S15) based on these two pieces of criteria from sheet 2. But the quantities are listed for price as 1-35 ('Sheet 2'!G), 36-71('Sheet 2'!H), so I need it to look in both columns to pull the correct price.

Sheet 2
C
Part Number
G
1 TO 35
H
36-71
8806.305.99

<colgroup><col><col><col></colgroup><tbody>
</tbody>

The formula that I currently have that comes back as #N/A or depending on how i adjust it #REF

=(INDEX('Sheet 2'!G:G,MATCH(1,IF(AND(('Sheet 2'!C:C='Sheet 1'!A15)*('Sheet 1'!G15<=35)),'Sheet 2'!G:G,0)),INDEX('Sheet 2'!H:H,MATCH(1,IF(AND(('Sheet2'!C:C=A15)*(AND('Sheet 1'!G15>=36,'Sheet 1'!G15<=71))),'Sheet 2'!H:H,0)))))

I feel like it's something simple to fix but I think I have been looking at it to long for my mind to grasp the easy answer.

Thanks!
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Here's my first thought.

When you create ANYTHING make sure everything conforms to a standard - AND STICK TO IT.
If you want "1 TO 35" then use "36 TO 71" not "36-71".
That way you may be able to use one fairly short formula.

Try

in S15
=INDEX(Sheet 2!G$1:H$1000,MATCH(A$15,C$1:C$1000,0),IF(G$15<=35,1,2))

Dont use full columns, e.g. G:G, things will be quicker if you limit the range by including a row number, e.g. G1:G1000
 
Last edited:
Upvote 0
Here's my first thought.

When you create ANYTHING make sure everything conforms to a standard - AND STICK TO IT.
If you want "1 TO 35" then use "36 TO 71" not "36-71".
That way you may be able to use one fairly short formula.

Try

in S15
=INDEX(Sheet 2!G$1:H$1000,MATCH(A$15,C$1:C$1000,0),IF(G$15<=35,1,2))

Dont use full columns, e.g. G:G, things will be quicker if you limit the range by including a row number, e.g. G1:G1000


Thank you, I was give the spreadsheet and told to make it work.

If we were to add another column for more pricing options by quantity say 72-144 how would I take this into consideration?
 
Upvote 0
1. Make sure all the headings contain a hyphen
2. In the row below copy this formula across the row for each column you have

=LEFT(G1,FIND("-",G1)-1)+0

This will list the first number in each range.

Then use this
=INDEX(Sheet 2!G$1:ZZ$1000,MATCH(A$15,C$1:C$1000,0),MATCH(G15,G2:ZZ2,1))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,025
Messages
6,128,348
Members
449,443
Latest member
Chrissy_M

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