Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 77
Default Changing Excel default highlighting

To create a quick subtotal, I want to select several cells on my Excel
workbook then view the total Excel figures at the bottom of my screen.

Excel 2003 showed great highlighting that would show me easily what cells I
had selected. How do I get Excel 2007 highlighting to do the same? Right
now the default is the same color as the unselected cells.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Changing Excel default highlighting

Bernie Dietrick posted the following a couple days ago...just make sure you
search for an answer before posting, please.
________________________________

You can't change that behavior through an application setting. You could
use the workbook or worksheet selection change event, like this below, but
it won't work when you select an entire column or row, or have other shapes
on your worksheet. Change the 25 to a level that you like - the higher the
number the more likely it is to affect speed. Copy the code, right-click
the sheet tab, select "View Code" and paste the code into the window that
appears. Note that this was not tested in 2007 - but works in 2003 (I don't
have any reason to run 2007 yet....)

Bernie


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim myShape As Shape
Dim myCell As Range
Dim myArea As Range

For Each myShape In ActiveSheet.Shapes
myShape.Delete
Next myShape

For Each myArea In Target.Areas
If myArea.Cells.Count < 25 Then
For Each myCell In myArea.Cells
Set myShape = ActiveSheet.Shapes.AddShape(msoShapeRectangle, _
myCell.Left, myCell.Top, _
myCell.Offset(0, 1).Left - myCell.Left, _
myCell.Offset(1, 0).Top - myCell.Top)
With myShape.Fill
.Visible = msoTrue
.Solid
.ForeColor.SchemeColor = 11
.Transparency = 0.75
End With
Next myCell
End If
Next myArea
End Sub


--
Please remember to indicate when the post is answered so others can benefit
from it later.


"Teri" wrote:

To create a quick subtotal, I want to select several cells on my Excel
workbook then view the total Excel figures at the bottom of my screen.

Excel 2003 showed great highlighting that would show me easily what cells I
had selected. How do I get Excel 2007 highlighting to do the same? Right
now the default is the same color as the unselected cells.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,718
Default Changing Excel default highlighting

It's not the same color but it appears that way to many users. MS
informally acknowledged the problem he

http://blogs.msdn.com/excel/archive/...selection.aspx


--
Jim
"Teri" wrote in message
...
| To create a quick subtotal, I want to select several cells on my Excel
| workbook then view the total Excel figures at the bottom of my screen.
|
| Excel 2003 showed great highlighting that would show me easily what cells
I
| had selected. How do I get Excel 2007 highlighting to do the same? Right
| now the default is the same color as the unselected cells.
|


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel Automatically Changing Decimals to Text as Default QueenOfStarwars Excel Discussion (Misc queries) 4 February 14th 07 05:50 AM
Changing Default Search in to Values Not Formulas in Excel Gregg Dotoli Excel Discussion (Misc queries) 1 January 1st 07 05:08 PM
Changing the default paper size in Excel (2003) ... Sharon Roffey Excel Discussion (Misc queries) 0 November 30th 06 12:39 PM
Changing default or hidden rules within microsoft excel? Jade Excel Discussion (Misc queries) 0 February 9th 06 11:28 PM
changing default font and size in Excel Ferd New Users to Excel 1 May 23rd 05 08:44 PM


All times are GMT +1. The time now is 12:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"