Table goes something like this..
Sheet1
A B C
1 CITY1 HOUSES @ROW()
2 CITY2 FACTORY @ROW()
3 CITY1 RAILWAY @ROW()
Sheet2
A B
1 CITY1
2 @VLOOKUP(Sheet2!$A$1,Sheet1!$A$1:$C$3,2,FALSE) 1
3 ???
The "C" Column in Sheet1 would result in 1,2,3 respectively
The "B" Column in Sheet2 is the result of
@VLOOKUP(Sheet2!$A$1,Sheet1!$A$1:$C$3,3,FALSE)
It's the ???? that I'm trying to figure out.....using the result in Sheet2!B2 in the next lookup as follows :
@VLOOKUP(Sheet2!$A$1,Sheet1!$A$(xxx):$C$3,2,FALSE
Where the "(xxx)" = Sheet2!B2
Thanks