Conditional Formating (If statements)

  • Thread starter Thread starter Marc
  • Start date Start date
M

Marc

In the conditional formatting box how would I make B4 turn yellow if F12 is
between 10 and 15?
 
Right-click Sheet, click 'View Code', and paste this into the window that
opens:

Private Sub Worksheet_Change(ByVal Target As Range)
Dim rnArea As Range
Dim rnCell As Range

With rnCell
If Range("F12").Value >= 10 And Range("F12").Value <= 15 Then

Range("B4").Interior.ColorIndex = 6
Else: Range("B4").Interior.ColorIndex = 0

End If
End With
End Sub
 
Select B4 and CF>Use a formula

=AND(F12>10,F4<15) taking your "between" literally.

Maybe you meant

=AND(F12>=10,F12<=15)


Gord Dibben MS Excel MVP
 
Marc said:
In the conditional formatting box how would I make B4 turn yellow if F12
is
between 10 and 15?

select cell B4
Select from menus
format
conditional formatting

from drop down in popup select Formula Is

put in condition

=AND($F$12>10,$F$12<15)

Select desired format.

When I did this it did not work until I had put something into B4. I could
then remove it and it still worked.
Maybe a small bug in excel.
 
Marc,

In B4 I'd put =IF(OR(F12<10,F12>15),"",F12)
colour the font yellow to match the background if you don't want to see a
number in B4

In Format/Conditional Formatting
Cell Value is Between 10 and 15
Click the format tab, select patterns and choose a yellow colour.
 
Back
Top