Find a number from a list of numbers

James8761

Board Regular
Joined
Apr 24, 2012
Messages
154
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I have a long list of numbers in Column E. E1:E1250. They go in number order 1-5000, but there are gaps in them. i.e. they start at 1,2,4,11,16,17,21,22,23,26,27,39,40,45,53 etc.

I type in cell B1 a number. Let’s say 4. In Cell C1 I would like to look at the figure in cell C1 (4) and then go down the list in Cells E1:E1250 and return the number that falls 12 places under 4. So in cell D1 it would return 53.

Does anyone know what the formula would be to put in D1 please? Look at C1, find C1 in the range E1:E1250, go down 12 cells and return that number in Cell D1.

Thanks for any help.

James
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Excellent. Does exactly what I want it to. Thanks very much.
 
Upvote 0
Hi,

You can also just use INDEX/MATCH without the volatile OFFSET function...

C1 uses Entire column reference, which I do Not recommend
C2 uses your Actual range:


Book1
BCDE
14531
2532
34
411
516
617
721
822
923
1026
1127
1239
1340
1445
1553
Sheet568
Cell Formulas
RangeFormula
C1=INDEX(E:E,MATCH(B1,E:E,0)+12)
C2=INDEX(E1:E1250,MATCH(B1,E1:E1250,0)+12)
 
Upvote 0

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

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