Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 170
Default high light the selected cell

I have a very big spread sheet. Each row goes across 15 cells. How can I have
the row outline in a different color to show what row i'm on and once I tab
to the cell I need how do I get the colunm outlined in a different color
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default high light the selected cell

Try Chip Pearson's customizable RowLiner add-in for more positve viewing of
selected cell.

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

Note: does not work on a protected sheet.


Gord Dibben MS Excel MVP

On Tue, 8 Sep 2009 14:39:25 -0700, Frank
wrote:

I have a very big spread sheet. Each row goes across 15 cells. How can I have
the row outline in a different color to show what row i'm on and once I tab
to the cell I need how do I get the colunm outlined in a different color


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 170
Default high light the selected cell

Thank you for your quick response. I will check this out.

"Gord Dibben" wrote:

Try Chip Pearson's customizable RowLiner add-in for more positve viewing of
selected cell.

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

Note: does not work on a protected sheet.


Gord Dibben MS Excel MVP

On Tue, 8 Sep 2009 14:39:25 -0700, Frank
wrote:

I have a very big spread sheet. Each row goes across 15 cells. How can I have
the row outline in a different color to show what row i'm on and once I tab
to the cell I need how do I get the colunm outlined in a different color



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 698
Default high light the selected cell

Here's a little home grown highlighter that highlights the row of a selected
cell in a range of cells, in this case Range("B8:K22"). Range and color of
highlight can be changed of course.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim Data As Range
Dim i As Integer
Dim j As Integer
Dim k As Integer
i = 2
j = 8
k = ActiveCell.Column()
Set Data = Range("B8:K22")

Data.Interior.ColorIndex = xlNone

If ActiveCell.Row < 8 Or ActiveCell.Row 22 Or _
ActiveCell.Column < 2 Or ActiveCell.Column 11 Then
Exit Sub
End If

ActiveCell.Offset(0, -(k - i)). _
Resize(1, 10).Interior.ColorIndex = 35

End Sub

HTH
Regards,
Howard

"Frank" wrote in message
...
I have a very big spread sheet. Each row goes across 15 cells. How can I
have
the row outline in a different color to show what row i'm on and once I
tab
to the cell I need how do I get the colunm outlined in a different color



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
Conditional Formating for dates beyond 30, 60, 90 to be high light dmorlando Excel Worksheet Functions 3 February 27th 09 11:03 PM
How to replace the background color of all cells from light green to light blue? Claudia d'Amato Excel Discussion (Misc queries) 1 November 14th 08 07:09 PM
Selected cells show up as very light gray? Can I darken? Louise Excel Discussion (Misc queries) 1 September 11th 08 08:25 PM
Excel should high-light Rows & Columns when cell selected. RS Setting up and Configuration of Excel 1 June 28th 06 11:26 AM
high light row your working in kcholly Excel Discussion (Misc queries) 3 March 29th 05 08:35 AM


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