Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I was wondering if there is a buried setting in Excel that allows the cell
that has the current focus to standout. A user would like to change a setting in Excel so that whatever cell has focus stands out (I suggested using the name box and/or row/column indicators, but that's not flying.) Or, possibly, a macro . . . any one know of anything? Thanks in advance, Rich |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put the following macro in the worksheet code area:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Set t = Target Cells.Interior.ColorIndex = xlNone t.Interior.ColorIndex = 6 End Sub It will color the ActiveCell as yellow. -- Gary''s Student - gsnu200774 "Rich W." wrote: I was wondering if there is a buried setting in Excel that allows the cell that has the current focus to standout. A user would like to change a setting in Excel so that whatever cell has focus stands out (I suggested using the name box and/or row/column indicators, but that's not flying.) Or, possibly, a macro . . . any one know of anything? Thanks in advance, Rich |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much - both replies are great answers . . .
"Gary''s Student" wrote: Put the following macro in the worksheet code area: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Set t = Target Cells.Interior.ColorIndex = xlNone t.Interior.ColorIndex = 6 End Sub It will color the ActiveCell as yellow. -- Gary''s Student - gsnu200774 "Rich W." wrote: I was wondering if there is a buried setting in Excel that allows the cell that has the current focus to standout. A user would like to change a setting in Excel so that whatever cell has focus stands out (I suggested using the name box and/or row/column indicators, but that's not flying.) Or, possibly, a macro . . . any one know of anything? Thanks in advance, Rich |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And wipe out all other existing background colors on the worksheet at the same
time. Gord Dibben MS Excel MVP On Wed, 19 Mar 2008 08:58:02 -0700, Gary''s Student wrote: It will color the ActiveCell as yellow. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Posted before I added some code which is a bit more friendly but Chip Pearson's
RowLiner add-in is the way to go IMO. See URL in reply by Mifty Private Sub Worksheet_SelectionChange(ByVal Target As Range) Static OldCell As Range If Application.CutCopyMode = 0 Then If Not OldCell Is Nothing Then OldCell.Interior.ColorIndex = xlColorIndexNone OldCell.Borders.LineStyle = xlLineStyleNone End If Set OldCell = Target OldCell.Interior.ColorIndex = 6 OldCell.Borders.LineStyle = xlContinuous Else If OldCell Is Nothing Then Set OldCell = Target Else Set OldCell = Union(OldCell, Target) End If End If End Sub Gord On Wed, 19 Mar 2008 09:53:10 -0700, Gord Dibben <gorddibbATshawDOTca wrote: And wipe out all other existing background colors on the worksheet at the same time. Gord Dibben MS Excel MVP On Wed, 19 Mar 2008 08:58:02 -0700, Gary''s Student wrote: It will color the ActiveCell as yellow. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Rich,
Another option is this add in by Chris Pearson download from http://www.cpearson.com/Excel/RowLiner.htm Cheers -- Mifty "Rich W." wrote: I was wondering if there is a buried setting in Excel that allows the cell that has the current focus to standout. A user would like to change a setting in Excel so that whatever cell has focus stands out (I suggested using the name box and/or row/column indicators, but that's not flying.) Or, possibly, a macro . . . any one know of anything? Thanks in advance, Rich |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much - both answers are great replies!
"Mifty" wrote: Hi Rich, Another option is this add in by Chris Pearson download from http://www.cpearson.com/Excel/RowLiner.htm Cheers -- Mifty "Rich W." wrote: I was wondering if there is a buried setting in Excel that allows the cell that has the current focus to standout. A user would like to change a setting in Excel so that whatever cell has focus stands out (I suggested using the name box and/or row/column indicators, but that's not flying.) Or, possibly, a macro . . . any one know of anything? Thanks in advance, Rich |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
referring to formula in a non active cell from active cell | Excel Discussion (Misc queries) | |||
Temporary formatting of cell with focus | Excel Discussion (Misc queries) | |||
Outline color of cell that has focus | Excel Discussion (Misc queries) | |||
tool tip to open when the cell has the focus | Excel Worksheet Functions | |||
Cursor Keys does not change cell focus | Excel Discussion (Misc queries) |