RedOctoberKnight
Board Regular
- Joined
- Nov 16, 2015
- Messages
- 152
- Office Version
- 2016
- Platform
- Windows
Good Morning,
I'm trying to highlight specific cells within a row when its selected.
I've been trying to do a google search but all I can find is the EntirerRow method.
I have data in columns B through J
I ultimately want it to be when i select a row, it highlights the first 3 columns in that row one color, the next 3 one color, and the final 3 one color
Any help would be much appreciated.
Thanks,
I'm trying to highlight specific cells within a row when its selected.
I've been trying to do a google search but all I can find is the EntirerRow method.
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Application.ScreenUpdating = False
Cells.Interior.ColorIndex = 0
With Target
.EntireRow.Interior.ColorIndex = 38
End With
Application.ScreenUpdating = True
End Sub
I have data in columns B through J
I ultimately want it to be when i select a row, it highlights the first 3 columns in that row one color, the next 3 one color, and the final 3 one color
Any help would be much appreciated.
Thanks,