formula for conditional formating

  • Thread starter Thread starter jockj215
  • Start date Start date
J

jockj215

Hi'
I have a spreadsheet (excel 2003) with data from a data base in one of the
cells is text which is free typed in the data base and I want to find the
words "WRITE OFF" within the text string and color the cell. Can anyone give
me a formula that will do this please.
 
Try this:

=ISNUMBER(SEARCH("write off",A1))

with A1 selected and with A1 the cell which contains the data.
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


Hi'
I have a spreadsheet (excel 2003) with data from a data base in one of the
cells is text which is free typed in the data base and I want to find the
words "WRITE OFF" within the text string and color the cell. Can anyone give
me a formula that will do this please.
 
Done it
=NOT(ISERROR(SEARCH("WRITE OFF",$I2)))

Thanks to all who looked, hope someone will find this useful.
 
If case is an issue :
=NOT(ISERR(FIND("WRITE OFF",A1,1)))
HTH
Daniel
 
And one more...

=countif(a1,"*write off*")>0


Hi'
I have a spreadsheet (excel 2003) with data from a data base in one of the
cells is text which is free typed in the data base and I want to find the
words "WRITE OFF" within the text string and color the cell. Can anyone give
me a formula that will do this please.
 

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

Back
Top