ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Conditional Formating (If statements) (https://www.excelbanter.com/excel-programming/441376-conditional-formating-if-statements.html)

Marc

Conditional Formating (If statements)
 
In the conditional formatting box how would I make B4 turn yellow if F12 is
between 10 and 15?

ryguy7272

Conditional Formating (If statements)
 
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


--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Marc" wrote:

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


Gord Dibben

Conditional Formating (If statements)
 
Select B4 and CFUse a formula

=AND(F1210,F4<15) taking your "between" literally.

Maybe you meant

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


Gord Dibben MS Excel MVP

On Tue, 6 Apr 2010 11:26:26 -0700, Marc
wrote:

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



Rod[_2_]

Conditional Formating (If statements)
 

"Marc" wrote in message
...
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$1210,$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.




Project Mangler

Conditional Formating (If statements)
 
Marc,

In B4 I'd put =IF(OR(F12<10,F1215),"",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.


"Marc" wrote in message
...
In the conditional formatting box how would I make B4 turn yellow if F12

is
between 10 and 15?





All times are GMT +1. The time now is 06:45 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com