Match/Vlookup/Hlookup ?

D

Daniel Q.

Not sure what formula to use when trying to match two criteria and having
them pinpoint a cell depending on teh criteria.

I need the formula to go out and look for "Vermont" in the row and "Mar" in
the column and give me '234'.

Texas California Vermont Ohio Iowa
Oct 10 5 4 3 2
Nov 38 20 50 90 7
Dec 40 35 96 177 12
Jan 41 50 142 264 17
Feb 56 65 188 351 22
Mar 65 80 234 438 27
Apr 75 95 280 525 32
May 85 110 326 612 37
Jun 94 125 372 699 42
Jul 104 140 418 786 47


Thanks!!
 
A

Andri

try it...

=VLOOKUP("Mar",I22:N32,MATCH("Vermont",{"Texas","California","Vermont","Ohio","Iowa"},0)+1,0)

HTH
 
A

Ashish Mathur

Hi,

you can try to use the INDEX and MATCH function:

=index(A1:F11,match("Mar",A1:A11,0),match("Vermont",A1:F1,0)

--
Regards,

Ashsih Mathur
Microsoft Excel MVP
www.ashishmathur.com
 

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

Top