ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Highlighted (https://www.excelbanter.com/excel-discussion-misc-queries/448653-highlighted.html)

Phil Kirby

Highlighted
 
In 2007 anyone know how to make a selected column darker so as to make a found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells

Claus Busch

Highlighted
 
Hi Phil,

Am Fri, 26 Apr 2013 08:24:33 +0100 schrieb Phil Kirby:

In 2007 anyone know how to make a selected column darker so as to make a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells


try:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim myRange As Range

With ActiveSheet
Set myRange = Intersect(Target.EntireColumn, .UsedRange)
.UsedRange.Interior.ColorIndex = xlNone
myRange.Interior.ColorIndex = 15
End With
End Sub

Put the code in the code module of the expected sheet


Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2

Phil Kirby

Quote:

Originally Posted by Claus Busch (Post 1611412)
Hi Phil,

Am Fri, 26 Apr 2013 08:24:33 +0100 schrieb Phil Kirby:

In 2007 anyone know how to make a selected column darker so as to make a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells


try:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim myRange As Range

With ActiveSheet
Set myRange = Intersect(Target.EntireColumn, .UsedRange)
.UsedRange.Interior.ColorIndex = xlNone
myRange.Interior.ColorIndex = 15
End With
End Sub

Put the code in the code module of the expected sheet


Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2

Cheers Claus,
Although I appreciate a macro on each woksheet would work but that will restrict it
There must be a way to default in the display properties somewhere

Anyone??

Gord Dibben[_2_]

Highlighted
 
Phil

This used to work in Excel 2007........no sure if it still does.

You can add or modify a key in the Registry if you are comforatble
hacking in the Regsitry.

Best to create a Restore Point before attempting any changes.

StartRun regedit.exe

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\E xcel\Options

On right-side pane right-click on "Options6" and modifydecimal number
from 32 to 16.

If you don't have an Options6 you must create it by adding a new DWORD
value

EditNewDWORD

Rename to Options6 and set decimal value to 16

Selected cells on 2007 will be Black

Gord



On Fri, 26 Apr 2013 08:24:33 +0100, Phil Kirby
wrote:


In 2007 anyone know how to make a selected column darker so as to make a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells


Gord Dibben[_2_]

Highlighted
 
Yes, it does still work.

Gord

On Fri, 26 Apr 2013 14:26:15 -0700, Gord Dibben
wrote:

Phil

This used to work in Excel 2007........no sure if it still does.

You can add or modify a key in the Registry if you are comforatble
hacking in the Regsitry.

Best to create a Restore Point before attempting any changes.

StartRun regedit.exe

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\ Excel\Options

On right-side pane right-click on "Options6" and modifydecimal number
from 32 to 16.

If you don't have an Options6 you must create it by adding a new DWORD
value

EditNewDWORD

Rename to Options6 and set decimal value to 16

Selected cells on 2007 will be Black

Gord



On Fri, 26 Apr 2013 08:24:33 +0100, Phil Kirby
wrote:


In 2007 anyone know how to make a selected column darker so as to make a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells


CellShocked

Highlighted
 
On Fri, 26 Apr 2013 10:16:16 +0100, Phil Kirby
wrote:


Claus Busch;1611412 Wrote:
Hi Phil,

Am Fri, 26 Apr 2013 08:24:33 +0100 schrieb Phil Kirby:
-
In 2007 anyone know how to make a selected column darker so as to make

a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells-


try:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim myRange As Range

With ActiveSheet
Set myRange = Intersect(Target.EntireColumn, .UsedRange)
.UsedRange.Interior.ColorIndex = xlNone
myRange.Interior.ColorIndex = 15
End With
End Sub

Put the code in the code module of the expected sheet


Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2


Cheers Claus,
Although I appreciate a macro on each woksheet would work but that will
restrict it
There must be a way to default in the display properties somewhere

Anyone??



Give it a range name, and when referenced in/with 'select', it will
always be the expected "highlighted area".

Picking it from the drop down list of named ranges up in the upper left
corner of the worksheet takes you there instantly, fully and properly
highlighted, with absolute and "high" confidence.

CellShocked

Highlighted
 
On Fri, 26 Apr 2013 08:24:33 +0100, Phil Kirby
wrote:


In 2007 anyone know how to make a selected column darker so as to make a
found cell using Find & Replace more visable
The shading is so light I can hardly see the highlighted cells


Once a "find" action has been selected, and there was no "no match
found" message, you can use the cursor key to shift over and back one
cell, thereby exposing the cell in which the find nested itself.


All times are GMT +1. The time now is 10:43 PM.

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