Look up values in a single column

Vegas01

New Member
Joined
Jun 15, 2021
Messages
43
Office Version
  1. 2019
Platform
  1. Windows
Hi everyone, I have a problem that I can't get my head around, I am trying to look up a value, and all of the data is in the same column, the return value is one cell underneath the lookup value.

For Example

I have 3000 lines of data on line 994 is the lookup reference "Rental" and on line 995 is the return value of 1,000 I need. I can't work it out.

Rental
1,000

Thanks In advance
Nikki
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Assuming the data is in Column "A"
Use
Excel Formula:
=INDEX(A1:A3000,MATCH("Rental",A1:A3000,0)+1,1)
 
Upvote 0
Solution
Not suggesting that you should, but you could do it without the +1 like this.
Excel Formula:
=INDEX(A2:A3000,MATCH("Rental",A1:A2999,0))
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

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