conditional formatting

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

Guest

Hi,

how can I have a cell highlighted (light gray) if the cell contains the
letters Vol

ex: if a cell contains> Vol 5 Chapter 3 xyz protocol

In this case I would like the cell to then automatically be highlighted
because it contains "Vol"

Thank You,
BD
 
You could use format|conditional formatting

And use a formula like:
=COUNTIF(A1,"*vol*")
or
=ISNUMBER(SEARCH("vol",A1))

If you want it to be case sensitive, use Find (instead of search) and make sure
you capitalize VOL the way you want.
 
Thank you very much.
BD

Dave Peterson said:
You could use format|conditional formatting

And use a formula like:
=COUNTIF(A1,"*vol*")
or
=ISNUMBER(SEARCH("vol",A1))

If you want it to be case sensitive, use Find (instead of search) and make sure
you capitalize VOL the way you want.
 

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