How to fulfill using VBA formating some range of Cells by certain rules?

henryyh

New Member
Joined
Jun 29, 2015
Messages
4
if I want to formating some cells by specific rules , how can I do to fulfill it ??

suppose: range("i2") represent some value , like 2.33
and I want some range of value , which < 2.33 , are formating become some color

such as:

if range("b2:F2") < range("i2")
then " match cells " .Interior.ColorIndex = 5

else if range("b2:f2") > range("i2") and range("b2:f2")< range("j2")
then " match cells " .Interior.ColorIndex = 3

else if range("b2:f2") > range("j2") and range("b2:f2") < range("k2")
then " match cells " .Interior.ColorIndex = 1


end if
 
Last edited:

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Welcome to the board. At a guess, your code might be:
Code:
Sub ConditionFormat()

Dim rng as Excel.Range

Application.ScreenUpdating = False

For Each rng in Range("B2:F2")
   With rng
   If .value < Range("I2").Value Then
      .Interior.ColorIndex = 5
   ElseIf .Value > Range("I2").Value And .Value < Range("J2").Value Then
      .Interior.ColorIndex = 3
   ElseIf .Value > Range("J2").Value and .Value < Range("K2").Value Then
      .Interior.ColorIndex = 1
   End If
   End With
Next rng

Application.ScreenUpdating = True

End Sub
 
Upvote 0
Welcome to the board. At a guess, your code might be:
Code:
Sub ConditionFormat()

Dim rng as Excel.Range

Application.ScreenUpdating = False

For Each rng in Range("B2:F2")
   With rng
   If .value < Range("I2").Value Then
      .Interior.ColorIndex = 5
   ElseIf .Value > Range("I2").Value And .Value < Range("J2").Value Then
      .Interior.ColorIndex = 3
   ElseIf .Value > Range("J2").Value and .Value < Range("K2").Value Then
      .Interior.ColorIndex = 1
   End If
   End With
Next rng

Application.ScreenUpdating = True

End Sub

;)I will try this code tomorrow , tks.
 
Upvote 0
Welcome to the board. At a guess, your code might be:
Code:
Sub ConditionFormat()

Dim rng as Excel.Range

Application.ScreenUpdating = False

For Each rng in Range("B2:F2")
   With rng
   If .value < Range("I2").Value Then
      .Interior.ColorIndex = 5
   ElseIf .Value > Range("I2").Value And .Value < Range("J2").Value Then
      .Interior.ColorIndex = 3
   ElseIf .Value > Range("J2").Value and .Value < Range("K2").Value Then
      .Interior.ColorIndex = 1
   End If
   End With
Next rng

Application.ScreenUpdating = True

End Sub

Thank you very mush , it's work perfectly , but if I want to put some loop within there , how can I fulfill it ?

1. Change constant number 2 to variable " i "
-> how could i do ?

case a:
For Each rng in Range("B(i):F(i)")
case b:
For Each rng in Range("B" &i : "F" & i )



such as:


Sub ConditionFormat()

Dim rng as Excel.Range

Application.ScreenUpdating = False


For i = 2 to 10
For Each rng in Range("B(i):F(i)")


With rng
If .value < Range("I(i)").Value Then
.Interior.ColorIndex = 5
ElseIf .Value > Range("I(i)").Value And .Value < Range("J(i)").Value Then
.Interior.ColorIndex = 3
ElseIf .Value > Range("J(i)").Value and .Value < Range("K(i)").Value Then
.Interior.ColorIndex = 1
End If
End With



Next rng


Next i

Application.ScreenUpdating = True

End Sub
 
Last edited:
Upvote 0
I think this is what you need:
Code:
Sub ConditionFormat()

Dim rng As Excel.Range
Dim i   As Long

Application.ScreenUpdating = False

For i = 2 To 10
    For Each rng In Range("B" & i).Resize(, 5)
        With rng
            If .Value < Range("I" & i).Value Then
                .Interior.ColorIndex = 5
            ElseIf .Value > Range("I" & i).Value And .Value < Range("J" & i).Value Then
                .Interior.ColorIndex = 3
            ElseIf .Value > Range("J" & i).Value And .Value < Range("K" & i).Value Then
                .Interior.ColorIndex = 1
            End If
        End With
    Next rng
Next i

Application.ScreenUpdating = True

End Sub
 
Upvote 0
your reply is so efficiently , I learn a lot from your code , thanks for you kindly helping , I will try this code tomorrow again.
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top