Formula error

T

travelinman

The following formula returns a #Value! error message if the text "Update" is
not found. I tried using ISERROR and could not get it to work. I would like
to display a blank cell if th text is not found. Any ideas?

=IF(FIND("Update",C2)>0,"x",)
 
M

Mike H

Hi,

Try this. Unless you have a reason for doing so use search instead of find
which is case sensitive

=IF(ISNUMBER(SEARCH("Update",C2)),"x","")

Mike
 
T

travelinman

Thanks for being so quick Mike. Appreciate the effort. It worked fine and I
learned about the case sensitive feature.
 

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