Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default how do you make the cursor position have a color ?

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   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default how do you make the cursor position have a color ?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make text to change its color accord. to selection from a l planner Excel Discussion (Misc queries) 0 September 4th 05 09:39 PM
Can you make a custom color for text? Joe Excel Discussion (Misc queries) 1 July 22nd 05 11:14 PM
Can you make a custom color for text? Joe Excel Discussion (Misc queries) 1 July 22nd 05 11:10 PM
FORMULA TO MAKE CELL COLOR CONTINGENT FORMULA QUESTION Excel Discussion (Misc queries) 5 March 7th 05 04:49 PM
how do I make a calendar with every three days a different color . hotone33952 Excel Discussion (Misc queries) 1 January 1st 05 02:00 PM


All times are GMT +1. The time now is 04:15 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"