Conditional format question

G

Gotroots

What formula is suitable to determine if a value in 'B' is not present in A:A

example:

oranges are in B3 but can not be found anywhere in A:A
 
E

Eva

for example
=IF(ISNA(VLOOKUP(B1,A:A,1,FALSE))=TRUE,"not found",VLOOKUP(B1,A:A,1,FALSE))
Click yes if helped
 
T

T. Valko

If you're looking for a conditional formatting formula...

=ISNA(MATCH(B3,A:A,0))

Or...

=COUNTIF(A:A,B3)=0
 
G

gotroots

Thank you both for your input.

I have used instead the find unique option in excel 2007 conditional
formatting.

Cheers
 

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