Need help wit formula

M

Maria Teresa

I need a formula that help me find a cell...example I am looking for people
in a worksheet (IN A LARGE RANGE) on a separate colum I have a list of
people that I need to find. EXAMPLE
a b c d
1 Marie Susan Luis Ann
2 Albert Jessi Carmen Linda

1 Ann ok
2 Ross no
3 Jessi ok
Thanks for your suggestions and help......
 
E

Eduardo

Hi Maria,
I assume that you have the names in row 1 and 2 and the list start in A4 in
B4 enter

=IF((COUNTIF($A$1:$D$2,A74)>0,"OK","NO")
 
E

Eduardo

Opps,
change A74 by A4

Eduardo said:
Hi Maria,
I assume that you have the names in row 1 and 2 and the list start in A4 in
B4 enter

=IF((COUNTIF($A$1:$D$2,A74)>0,"OK","NO")
 
T

T. Valko

Let's assume your list of names to lookup is in the range G1:G3 -

G1 = Ann
G2 = Ross
G3 = Jessi

Enter this formula in H1 and copy down to H3:

=IF(COUNTIF(A$1:D$2,G1),"ok","no")
 

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