VLOOKUP or

N0t Y0urs

Board Regular
Joined
May 1, 2022
Messages
96
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
Platform
  1. MacOS
  2. Mobile
  3. Web
Hi, I am currently working with Google sheets on my phone so restricted with how to show what I am after.

I want L4 to reference Q3 and return a value from the range FE25:FF63

Basically the values in column FF increase but there’s no pattern to the increase in the respective FE row is the value I want to return

An example is:

FE25 = 0.02 FF25 = 50
FE26 = 0.04 FF26 = 75
Skip a few
FE35 = 0.20 FF35 = 2400
FE36 = 0.35 FF36 = 5000
Skip a few more
FE62 = 100 FF62 = 75000
FE63 = 125 (max value) FF62 = >80000

Therefore is Q3 equals 45 the L4 would be 0.02

Then the next row would be Q4 equals 72.50 L5 would be 0.04

The skip to row 250 and Q249 is 74699 L250 returns 100 while Q250 is 93250 L251 returns the value of 1250

Is a v lookup what I need or is it something else. Any suggestions are much appreciated
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
VLOOKUP or similar won't work because your values in column FF appear to be the upper limit for the value in FE, and for a nearest match VLOOKUP you need them to be the lower limit - eg FF25 would need to be 0 and FF26 would need to be say 50.01. Or you can use something like:

Excel Formula:
=INDEX(FE25:FE63,MATCH(TRUE,FF25:FF63>=Q3,0))
 
Upvote 0
Thank you both for your suggestions. I tried Flashbond’s suggestion and it worked for me so thanks again
 
Upvote 0
Then the next row would be Q4 equals 72.50 L5 would be 0.04
With the example provided, @Flashbond's suggestion would return 0.02 for 72.50, it would not return the 0.04 that you say it should be.

If it does work correctly then swapping the 2 columns was not necessary, you could have simply used

=LOOKUP(Q3,FF:FF,FE:FE)

With the original layout.
 
Upvote 0

Forum statistics

Threads
1,215,203
Messages
6,123,627
Members
449,109
Latest member
Sebas8956

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