View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Need simple formula to find one string in another

Try

=IF(ISNUMBER(FIND("XXX",C3)),"Y","N").

--
__________________________________
HTH

Bob

"Eric_NY" wrote in message
...
I need a formula which returns Y if a cell contains a string and N if not.

Here's a start: IF(FIND("XXX",C3),"Y","N"). But the trouble is that if the
target string is not found, it returns a #VALUE! error.

I can of course fix that by something like
IF(ISERROR(FIND("XXX",C3),"N","Y"). But this seems unnecessarily awkward.
Is
there a simpler solution?

I'm using Excel 2003.

Thanks.