Index/Match

Subham02

New Member
Joined
Dec 19, 2019
Messages
4
Office Version
  1. 2019
Platform
  1. Windows
I made a vlookup formula to indirectly get value from another sheet. The problem is the value i need is below two rows. I know i can't use offset in vlookup and i am not familiar with index/match. Can anyone help. The formula is =VLOOKUP($C$1,INDIRECT("'"&$B3&"'!A:AZ"),2,0) . Remember i need the value of the cell two rows below. Thanks in advance
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Use Choose to combine the ranges.

=VLOOKUP($C$1,CHOOSE({1,2},Column with look up value,all other columns, but pick a range 2 rows below),2,0)
 
Upvote 0
Use Choose to combine the ranges.

=VLOOKUP($C$1,CHOOSE({1,2},Column with look up value,all other columns, but pick a range 2 rows below),2,0)

You have to be using a defined number of rows instead of picking the whole column if you use this. Also, you can use OFFSET in the formula.

=VLOOKUP($C$1,CHOOSE({1,2},INDIRECT("'"&$B3&"'!A1:A1000"),OFFSET(INDIRECT("'"&$B3&"'!B1:AZ1000"),2,0),2,0)
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,924
Members
448,533
Latest member
thietbibeboiwasaco

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