finding a value with more than one criteria

  • Thread starter Thread starter mulji.hafeez
  • Start date Start date
M

mulji.hafeez

Hi

I need to find a value in column E but it has to meet 2 different
criteria

the value in column A and column C must match before

so if this is wat it looks like

A B C D E
1 X TR X 3.1
2 X TR X 3.1
1 X TL X 3.1

I need to find 3.1 only when Column A is 1 and Column C is TR

Thanks in advance
 
=INDEX(E1:E10,MATCH(,(A1:A10=1)*(C1:C10="TR"),0))

entered with ctrl + shift & enter


--


Regards,


Peo Sjoblom
 
Typo alert:

=INDEX(E1:E10,MATCH(1,(A1:A10=1)*(C1:C10="TR"),0))

I added the 1 in match(1,...
 
Typo alert:

=INDEX(E1:E10,MATCH(1,(A1:A10=1)*(C1:C10="TR"),0))

I added the 1 in match(1,...









--

Dave Peterson- Hide quoted text -

- Show quoted text -

Thanks for the Help Peo and Dave... the formula worked perfectly...

Thanks again
 

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

Back
Top