use VB to highlight a cell when active ?

ISLANDBUOY

New Member
Joined
Jun 10, 2006
Messages
27
Hi out there,
I wish to highlight a specific cell (say A3) when ever it becomes the active cell. I wish to apply this to this cell only and no other. I have no problem with the code to change the interior colour but I am unable to target to a specific cell...
Regards,
Islandbuoy
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
<s>Many threads here on this subject. I always recommend:

http://www.cpearson.com/excel/RowLiner.htm

There's also an entry in the Mr Excel Hall of Fame if you feel like coding it yourself.</s>

Sorry read to quickly! Just drop this into the worksheet's code module:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    With Target
        If .Address = "$A$3" Then .Interior.ColorIndex = 6 Else Range("A3").Interior.ColorIndex = xlColorIndexNone
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,048
Messages
6,122,862
Members
449,097
Latest member
dbomb1414

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