Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I am trying to be able to locate when my cursor is located in a spradsheet
easier by coloring the highlighted cell it is at. How do I accomplish this? |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
You would need VBA code to produce this.
Private Sub Worksheet_SelectionChange(ByVal Target As Range) On Error GoTo ws_exit: Application.EnableEvents = False Cells.Interior.ColorIndex = xlNone Target.Interior.ColorIndex = 6 Oldrow = Target.Row ws_exit: Application.EnableEvents = True End Sub Thsi is woeksheet event code. Right-click on the sheet tab and "View Code" Copy/paste the code into that module. Colorindex 6 is yellow. To see the rest of the colors and numbers see David McRitchie's site. http://www.mvps.org/dmcritchie/excel/colors.htm Gord Dibben MS Excel MVP On Fri, 22 Sep 2006 10:30:02 -0700, Erin Nordan <Erin wrote: I am trying to be able to locate when my cursor is located in a spradsheet easier by coloring the highlighted cell it is at. How do I accomplish this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make text to change its color accord. to selection from a l | Excel Discussion (Misc queries) | |||
Can you make a custom color for text? | Excel Discussion (Misc queries) | |||
Can you make a custom color for text? | Excel Discussion (Misc queries) | |||
FORMULA TO MAKE CELL COLOR CONTINGENT | Excel Discussion (Misc queries) | |||
how do I make a calendar with every three days a different color . | Excel Discussion (Misc queries) |