Combining HLOOKUP, INDIRECT and ROW Functions

tahas

New member
Joined
Sep 25, 2012
Messages
4
Reaction score
0
Points
0
Location
Richmond Hill, ON Canada
Excel Version(s)
2010, 365
Hi All,

Wondering if there is a way that my formula could auto pick up the data from next row instead of manually changing the row to 3 and so on. Please see my formula below:
=HLOOKUP(C$6,INDIRECT($A7&"!$B$6:$AA$56"),2,FALSE)

Thanks for your help in advance.
Taha
 
Maybe like this:

=HLOOKUP(C$6,INDIRECT($A7&"!$B$6:$AA$56"),ROWS(C$6:C6)+1,FALSE)
 
Back
Top