Colouring a row depending on data entered in a column

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

Guest

Hi,

I'm working on spreadsheets like the example below. Basically I want the
entire row to become shaded depending on the data entered in a particular
column:

#Coach ETA Rep Dest

105 0800 Jon AIME

106 0900 Marc CMF

107 0850 Jim AIME

108 0900 Pete LYS


Basically, if either CMF or LYS show up in column 4, I want that entire row
to be shaded.

Thanks
 
Use conditional formatting with a formula of

=OR($D2="CMF",$D2="LYS")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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