billandrew

Well-known Member
Joined
Mar 9, 2014
Messages
743
Evening

Is this a proper way to highlight specific ranges

Thanks



Sub HighlightIf()

Dim c As Range, r As Range, lr As Long, s As Range, q As Range

lr = Range("D" & Rows.Count).End(xlUp).Row

Set r = Range("D2:E" & lr)

For Each c In r

If c.Value > 2000 And c.Value < 200000 Then

c.Interior.ColorIndex = 4

End If

Next c

Set q = Range("F2:F" & lr)

For Each s In q

If s.Value > 180000 Then

s.Interior.ColorIndex = 6

End If

Next
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
This might be a bit more efficient.
Code:
Sub HighlightIf()
Dim c As Range, r As Range, lr As Long
    
    lr = Range("D" & Rows.Count).End(xlUp).Row
    
    Set r = Range("D2:D" & lr)
    
    For Each c In r
    
        If c.Value > 2000 And c.Value < 200000 Then
            c.Interior.ColorIndex = 4
        End If
    
        If c.Offset(, 1).Value > 2000 And c.Offset(, 1).Value < 200000 Then
            c.Interior.ColorIndex = 4
        End If
        
        If c.Offset(, 2).Value > 180000 Then
            c.Offset(, 2).Interior.ColorIndex = 6
        End If
        
    Next c

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,954
Messages
6,122,462
Members
449,085
Latest member
ExcelError

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