VBA highlight specific Cells in row

RedOctoberKnight

Board Regular
Joined
Nov 16, 2015
Messages
152
Office Version
  1. 2016
Platform
  1. 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.

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,
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
@RedOctoberKnight
Subject to you editing the colour index to suit then maybe like below.

VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

  If Target.Cells.Count > 1 Then Exit Sub
  Dim r As Long
  
    Cells.Interior.ColorIndex = 0
    r = Target.Row
  Range("B" & r & ":D" & r).Interior.ColorIndex = 38
  Range("E" & r & ":G" & r).Interior.ColorIndex = 18
  Range("H" & r & ":J" & r).Interior.ColorIndex = 28

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,221,181
Messages
6,158,395
Members
451,489
Latest member
tixarah

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