Conditional Formating (If statements)

M

Marc

In the conditional formatting box how would I make B4 turn yellow if F12 is
between 10 and 15?
 
R

ryguy7272

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
 
G

Gord Dibben

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
 
R

Rod

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.
 
P

Project Mangler

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.
 

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