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

Yes, I corrected that. Unless I'm not following you on this?

--
Biff
Microsoft Excel MVP


"Rick Rothstein" wrote in message
...
Shouldn't your Sheet1 reference go on the A1 in the ISTEXT function call
as well?

--
Rick (MVP - Excel)


"T. Valko" wrote in message
...
=IF(AND(ISTEXT(A1),ISERROR(SEARCH("Already",Sheet 1!A1))),"x","")


Ooops!

I left out the sheet reference in the ISTEXT function. Should be :

=IF(AND(ISTEXT(Sheet1!A1),ISERROR(SEARCH("Already" ,Sheet1!A1))),"x","")

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
One way...

=IF(AND(ISTEXT(A1),ISERROR(SEARCH("Already",Sheet1 !A1))),"x","")

--
Biff
Microsoft Excel MVP


"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!