Lookup value and return 1 row below

Bkisley

Board Regular
Joined
Jan 5, 2017
Messages
100
Hello everyone!

I have an easy one, I hope, for you!

I have a vertical list of data (years) in cells A2:A19 on Tab 2
I have a horizontal list of data (years) in cells C5:T5 on Tab 1
I have a horizontal list of data (sales) in cells C6:T6 on Tab 1

I need an equation that does the following - Lookup cell value [A2 on Tab 2] on tab 1 between C5:T5 and return the corresponding value in C6:T6

Example
A2 on Tab 2 = 2019
I need to find where 2019 is in cells C5:T5 on Tab 1 --> let's say it is E5
I need my equation to return the value of cell E6

Let me know if you need anything else!
Thank you in advance
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
on tab 2 try and copy down.
Code:
=INDEX(Sheet5!$C$6:$T$6,MATCH(A2,Sheet5!$C$5:$T$5,0))
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,254
Members
452,624
Latest member
gregg777

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