INDEX and MATCH with ranges

matthewlouis

Active Member
Joined
Mar 28, 2014
Messages
374
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
I have a table that has two columns of ranges I would like to INDEX and MATCH.

EXAMPLE: I need to index and match 48.95% (in cell I4) using the table where Column O is 45% and column P is 50% with the probability column at $R$4:$R$43.

How do I INDEX and MATCH a percentage like that to fall between that range so I match it with the probability column R?

Thanks in advance!
 
Last edited:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Here's a couple of options:

=INDEX($R$6:$R$43,MATCH(1,INDEX(($O$6:$O$43<=$I$4)*($P$6:$P$43>=$I$4),0),0))
=LOOKUP(2,1/(($O$4:$O$43<=$I$4)*($P$4:$P$43>=$I$4)),$R$4:$R$43)
 
Upvote 0
Perfect, Steve the Fish (love that!) Thanks so much, works like a charm.
 
Upvote 0

Forum statistics

Threads
1,216,119
Messages
6,128,944
Members
449,480
Latest member
yesitisasport

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