Retun value from a column based on a lookup value falling between a range

freeb1893

Board Regular
Joined
Jul 30, 2012
Messages
187
I have the following table, 3 columns:

Low EndHigh EndPriority Level
prospects$00
$1$4991
$500$9992
$1,000$1,9993
$2,000$2,9994
$3,000$4,9995
$5,000$9,9996
$10,000$14,9997
$15,000$29,9998
$30,000$99,9999
$100,000+10

<tbody>
</tbody><colgroup><col><col span="2"></colgroup>

Then I have a number of numerical values in another column, such as below:

$37,686.95
$37,590.34
$36,183.91
$33,878.85
$30,264.94
$28,492.51
$27,903.74
$26,777.97
$25,964.11

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

I want to be able to lookup the values listed just above here, and check and see which ranges they fall into with my first table up top of this post, and return the value in the "Priority Level" column for that range it falls in. Can someone help me put that into a formula?
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.

Trebor76

Well-known Member
Joined
Jul 23, 2007
Messages
5,125
Hi there,

You can use this - just change the cell reference from F8 to suit:

=LOOKUP(F8,{0,1,499,1000,2000,3000,5000,10000,15000,30000,100000},{0,1,2,3,4,5,6,7,8,9,10})

HTH

Robert
 
Upvote 0

Forum statistics

Threads
1,191,173
Messages
5,985,096
Members
439,940
Latest member
Kyrad42

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
Top