View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default Find a word in a sentence

Here is another way...

=IF(A1="","",LEFT("X",COUNTIF(A1,"*already*")=0))

--
Rick (MVP - Excel)


"Chicago2Paris" wrote in message
...
I searched the board, but couldn't find an exact answer to my issue, so I'm
looking for some help.

I have a column that may contain text or may be blank.

I want to place an "x" on another sheet if:
1. There is text in the cell AND
2. The cell does not contain the word "Already" in the sentence

Thanks!