View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Extracting information from table

With you table in the range A1:D5

B1:D1 = column headers
A2:A5 = row headers

A10 = lookup value = blue
A11 = lookup values = 2

=VLOOKUP(A11,A1:D5,MATCH(A10,A1:D1,0),0)

result = sally

Biff

"Ianb" wrote in message
...
Hi
I have a table as follows
blue green yellow
4 jane heidi natalie
3 bruce sharon fred
2 sally paul Ken
1 brendon kevin graham

(excuse the layout but you'll get the idea). I want to put a formula in
another worksheet than includes blue and 2 (being the column and row
headers)
and get 'Salley" returned being the contents of the cell at the
intersection
of the named column and row.

Can someone point me in the right direction - I've tried DGet and Index
but
they don't work as I need them to (unless I'm missing something"

Thanks

IanB