Excel Search Function??

C

C Fillmore

I have data in five columns (A,B,C,D,E are the headers) and an unlimited number of rows (can vary from one instance to another) and what I would like to do is with a function in the cell F1 use the value from A1 and search all values in column E, and return a "True" statement if the exact value from A1 is found and if no exact value is found return a "False". Any ideas
 
J

Jason Morin

=COUNTIF(E:E,A1)>0

HTH
Jason
Atlanta, GA
-----Original Message-----
I have data in five columns (A,B,C,D,E are the headers)
and an unlimited number of rows (can vary from one
instance to another) and what I would like to do is with
a function in the cell F1 use the value from A1 and
search all values in column E, and return a "True"
statement if the exact value from A1 is found and if no
exact value is found return a "False". Any ideas
 
V

Vasant Nanavati

=IF(ISNA(VLOOKUP(A1,E1:E1000,1,FALSE)),FALSE,TRUE)

--

Vasant

C Fillmore said:
I have data in five columns (A,B,C,D,E are the headers) and an unlimited
number of rows (can vary from one instance to another) and what I would like
to do is with a function in the cell F1 use the value from A1 and search all
values in column E, and return a "True" statement if the exact value from A1
is found and if no exact value is found return a "False". Any ideas
 

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