Conditional Formatting Help

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
One way:

CF1: =AND(COUNTIF(E15,"*R*"),G15>TIME(8,30,0))
Format1: <patterns>/<desired color>
 
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?
 
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

Similar Threads

Conditional Formatting Question 4
SUMPRODUCT - Multiple Criteria 1
Want To Shrink Formula 1
#VALUE 3
Conditional Formatting with Time 4
Excel VBA 1
Simplifying a formula 3
IF Function Help 3

Back
Top