Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 208
Default Change color of active row

I'm wondering if it's possible to have the row of the active cell highlighted
or shaded. As the user moves the cursor up or down, the active row will be
shaded accordingly.

Any suggestions? Thanks.
--
Craig
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 104
Default Change color of active row

Hi Craig, Try this code. It shows both active Column, and Row. Make
sure the code is place in active worksheet event for
"Worksheet_SelectionChange() "

hth , Rick


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Rows.Interior.ColorIndex = 0
Target.EntireColumn.Interior.ColorIndex = 36
Target.EntireRow.Interior.ColorIndex = 36

End Sub



"Craig" wrote in message
...
I'm wondering if it's possible to have the row of the active cell

highlighted
or shaded. As the user moves the cursor up or down, the active row will

be
shaded accordingly.

Any suggestions? Thanks.
--
Craig



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 486
Default Change color of active row

Check this out...

http://www.cpearson.com/excel/excelM...ightActiveCell
--
HTH...

Jim Thomlinson


"Craig" wrote:

I'm wondering if it's possible to have the row of the active cell highlighted
or shaded. As the user moves the cursor up or down, the active row will be
shaded accordingly.

Any suggestions? Thanks.
--
Craig

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 208
Default Change color of active row

Thank you both for the suggestions!!
--
Craig


"Craig" wrote:

I'm wondering if it's possible to have the row of the active cell highlighted
or shaded. As the user moves the cursor up or down, the active row will be
shaded accordingly.

Any suggestions? Thanks.
--
Craig

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 i change the active cell highlight color? jkk771 Excel Discussion (Misc queries) 1 February 13th 09 04:31 PM
Change color of active cells Steph Excel Discussion (Misc queries) 1 March 19th 07 07:30 PM
Change color on active cell Helen Excel Programming 1 November 16th 05 04:07 AM
Active Row Column Color Change Kim Setting up and Configuration of Excel 3 October 27th 05 04:49 PM
How do I change color of active cell in Excel lfletcher Excel Discussion (Misc queries) 4 April 4th 05 06:29 PM


All times are GMT +1. The time now is 07:05 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"