A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

high light the selected cell



 
 
Thread Tools Display Modes
  #1  
Old September 8th, 2009, 10:39 PM posted to microsoft.public.excel.newusers
Frank
external usenet poster
 
Posts: 551
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  
Old September 8th, 2009, 11:02 PM posted to microsoft.public.excel.newusers
Gord Dibben
external usenet poster
 
Posts: 20,252
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  
Old September 8th, 2009, 11:13 PM posted to microsoft.public.excel.newusers
Frank
external usenet poster
 
Posts: 551
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  
Old September 8th, 2009, 11:26 PM posted to microsoft.public.excel.newusers
L. Howard Kittle
external usenet poster
 
Posts: 516
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
news
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



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:50 AM.


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