VBA interior color change

Enzo_Matrix

Board Regular
Joined
Jan 9, 2018
Messages
113
I have a CF that applies to column G based on dates.
I want to take the color that is applied for overdue orders RGB(217,217,217) and apply it to the entire row instead of just the cells in column G.

This is what I've written, but it is not working the way I expect it should.
Code:
If Range("G:G").Interior.Color = RGB(217, 217, 217) Then      
     Range("A2:F100").Interior.Color = RGB(217, 217, 217)
End If

Please help.
 
This code will run on the specified sheet instead of the active sheet. Change Sheet4 to the name of your sheet

Code:
Sub cf()
Dim lr As Long
lr = Sheets("[COLOR=#FF0000]Sheet4[/COLOR]").Cells(Rows.Count, "G").End(xlUp).Row
With Sheets("[COLOR=#FF0000]Sheet4[/COLOR]")
    For Each cell In .Range("G2:G" & lr)
        myrow = cell.Row
        If cell <= Date Then
            .Range(.Cells(myrow, "A"), .Cells(myrow, "F")).Interior.Color = RGB(217, 217, 217)
        End If
    Next cell
End With
End Sub
 
Last edited:
Upvote 0

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Forum statistics

Threads
1,215,220
Messages
6,123,695
Members
449,117
Latest member
Aaagu

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