Conditional Formatting Help

G

Guest

I want for a cell to change color if one cell E15 has an R in it and if cell
G15 is more than 8.5 hours. Any help would be appreciated.
 
J

JE McGimpsey

One way:

CF1: =AND(COUNTIF(E15,"*R*"),G15>TIME(8,30,0))
Format1: <patterns>/<desired color>
 
D

Dave Peterson

maybe
=and(e15="r",g15>8.5)
or
=and(e15="r",g15>time(0,8,30))

It depends on how you enter that 8.5 hours -- is it a real time or just a
regular old number?
 
G

Guest

One more question what is the G15 is a subtraction of time however it is just
a gerneral text format?
 

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

Top