VLOOKUP ???

J

Jeanette

I want to look up value in column c when column l reaches specific criteria.

for example:

when column L changes from 'No" to "Yes" what is the value in column C same
row as the change occurs?
 
P

Per Erik Midtrød

I want to look up value in column c when column l reaches specific criteria.

for example:

when column L changes from 'No" to "Yes" what is the value in column C same
row as the change occurs?

I think you will be better off with a mix of Match and Index, someting
like:
=INDEX(C:C;MATCH("Yes";L:L))

This will return the value in C from the first row i column L that
equals "Yes"

Per Erik
 
J

Jeanette

Whn I try that formula, it gives the last value row value for "yes" how do I
get it to provide the first row value?
 
P

Per Erik Midtrød

Whn I try that formula, it gives the last value row value for "yes" how do I
get it to provide the first row value?

Sorry, guess I didn't test it good enough,
just insert lookup type 0 and I think it does what you need:
INDEX(C:C;MATCH("Yes";L:L;0))

Per Erik
 
J

Jeanette

Thank you so much ~ You are amazing ;-)

Per Erik Midtrxd said:
Sorry, guess I didn't test it good enough,
just insert lookup type 0 and I think it does what you need:
INDEX(C:C;MATCH("Yes";L:L;0))

Per Erik
 

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