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.
Please help.
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.