Lookup function
Hi,
Believe you are looking at the function index()
=INDEX(A1:E5,4,2)
which consists of the area, row number, column number
If you are also looking for integrating row and column numbers, you
will need to combine
=MATCH(A10,A1:A5,FALSE) for row
=MATCH(A11,A1:E1,FALSE) for column
provided you input your variables in A10 and A11
HTH
Cheers
Carim
|