#1   Report Post  
Richard
 
Posts: n/a
Default Cell Location

Does Excel have a way of highlighting whatever cell I am in. Particularly
with spreadsheets with lots of data, it would be easier on my eyes if what
ever cell I am currently in is somehow highlighted and when I deselect it
goes back to normal. It would be even better if the entire row and column
would highlight. Please let me know if this is a function that is available
on Excel. thanks
  #2   Report Post  
bj
 
Posts: n/a
Default

there are several good sugestions at
http://www.cpearson.com/excel/excelM...ightActiveCell

"Richard" wrote:

Does Excel have a way of highlighting whatever cell I am in. Particularly
with spreadsheets with lots of data, it would be easier on my eyes if what
ever cell I am currently in is somehow highlighted and when I deselect it
goes back to normal. It would be even better if the entire row and column
would highlight. Please let me know if this is a function that is available
on Excel. thanks

  #3   Report Post  
FSt1
 
Posts: n/a
Default

hi,
try this but be warned. it will slow things down a little. this code runs
when ever you change cells. this is a worksheets change event so put the code
in the worksheet that you want to use it on.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Dim rng As Range
Dim rng2 As Range

Set rng = Range("A1:S1") 'set the title row. expand or decrease if needed
Set rng2 = Range("T1:IV1") 'sets row not part of title

Range("A2:IV5000").Interior.ColorIndex = xlColorIndexNone
'expand the above range if you need to
Target.EntireRow.Interior.ColorIndex = 36 ' colors row yellow
rng.Interior.ColorIndex = 15 'colors title row gray
rng2.Interior.ColorIndex = xlNone 'no color for non title row
section
Range("T2:IV5000").Interior.ColorIndex = xlNone 'clears color from non
data cells

End Sub

regards
FSt1
"Richard" wrote:

Does Excel have a way of highlighting whatever cell I am in. Particularly
with spreadsheets with lots of data, it would be easier on my eyes if what
ever cell I am currently in is somehow highlighted and when I deselect it
goes back to normal. It would be even better if the entire row and column
would highlight. Please let me know if this is a function that is available
on Excel. thanks

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
Return cell contents based on conditional lookup jarviscars Excel Worksheet Functions 15 August 5th 05 08:05 AM
Function syntax to compare cell contents ES Excel Worksheet Functions 2 May 18th 05 03:53 PM
Syntax for inferred cell references donesquire Excel Worksheet Functions 4 April 4th 05 09:29 PM
How to change location A1 cell from upper right to upper left? Doug@Peacock Excel Discussion (Misc queries) 1 February 8th 05 02:37 PM
hyperlink an excel cell to a specific location wthin application f dirtboy New Users to Excel 1 January 17th 05 08:07 PM


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

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

About Us

"It's about Microsoft Excel"