Vlookup

  • Thread starter Thread starter nc
  • Start date Start date
N

nc

Is there a lookup function that can find the intersection
value of a specified column and row based on their
headings (column and row)?
 
I was looking for something more like a lookup function.

Plus your method don't seem to work.

Thanks for trying.
 
It works,

you need to check accept labels in formulas under tools>options>calculation


Otherwise you can use

=INDEX(A1:N50,MATCH(Rowheading,A1:A50,0),MATCH(Columnheading,A1:N1,0))

--
For everyone's benefit keep the discussion in the newsgroup.

Regards,

Peo Sjoblom
 
Thanks Peo. It was the Index function I was looking for.

Does the first method work with number as the column/row
heading?
 
nc said:
Thanks Peo. It was the Index function I was looking for.

Does the first method work with number as the column/row
heading?

Not directly; numbers are not acceptable names for ranges. For example,
with 3 as the heading, the accepted heading will be to _3

Alan Beban
 
Thanks for your help.
-----Original Message-----


Not directly; numbers are not acceptable names for ranges. For example,
with 3 as the heading, the accepted heading will be to _3

Alan Beban
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top