Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Formating for dates beyond 30, 60, 90 to be high light | Excel Worksheet Functions | |||
How to replace the background color of all cells from light green to light blue? | Excel Discussion (Misc queries) | |||
Selected cells show up as very light gray? Can I darken? | Excel Discussion (Misc queries) | |||
Excel should high-light Rows & Columns when cell selected. | Setting up and Configuration of Excel | |||
high light row your working in | Excel Discussion (Misc queries) |