"Contains" in conditional formatting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to set conditional formatting to respond when a cell contains the text "msg" somewhere in the body of text in that cell?
 
Mark,

Yes, use a formula like

=NOT(ISERROR(FIND("msg",A1)))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Mark said:
Is there a way to set conditional formatting to respond when a cell
contains the text "msg" somewhere in the body of text in that cell?
 
Hi Mark
enter the following formula in the conditional format dialog
=ISNUMBER(FIND("msg",$A$1))
and choose your format

Frank
 
Back
Top