Thread: Lookup function
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Carim[_3_] Carim[_3_] is offline
external usenet poster
 
Posts: 137
Default 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