ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   high light the selected cell (https://www.excelbanter.com/new-users-excel/242029-high-light-selected-cell.html)

Frank

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

Gord Dibben

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



Frank

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




L. Howard Kittle

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





All times are GMT +1. The time now is 01:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com