Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Highlighting cells

Excel 2007 sp1 with vista 32 business sp1

Background: When you highlight multiple non-contigious cells (i.e. hold the
control key down and select several cells that are not connected) Excel
highlights the selected cells in light blue.

Problem: This light blue does not show at all on many projectors. In some
case you can adjust the color temp and this helps. We do hundreds of
presentation in North America each year and can not control what projection
equipment we will be using.

Requested solution: I would change the light blue background that is applied
to selected cells to some other color or alternatively making the color
darker would probably work. Can this default setting be changed.

Thanks, Will

  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 245
Default Highlighting cells

In the Workbook Object paste this.
'This will go cell by cell if your cells color is light blue then it will
change to green.


Option Explicit

'This will tell you what number your color is.
Sub CheckColorIndex()
MsgBox ActiveCell.Interior.ColorIndex 'To determine your color
Color
End Sub

Sub Color()

Application.ScreenUpdating = False
Do
On Error GoTo NextColumn
ActiveCell.Offset(1, 0).Select
'The number from above
goes here
If ActiveCell.Interior.ColorIndex = 33 Then '<--is light blue but yours
could be differnt
ActiveCell.Interior.ColorIndex = 4 '<--- This is green
End If
Loop
NextColumn:
ActiveCell.Offset(-65535, 1).Select
Color
End Sub


"Will" wrote:

Excel 2007 sp1 with vista 32 business sp1

Background: When you highlight multiple non-contigious cells (i.e. hold the
control key down and select several cells that are not connected) Excel
highlights the selected cells in light blue.

Problem: This light blue does not show at all on many projectors. In some
case you can adjust the color temp and this helps. We do hundreds of
presentation in North America each year and can not control what projection
equipment we will be using.

Requested solution: I would change the light blue background that is applied
to selected cells to some other color or alternatively making the color
darker would probably work. Can this default setting be changed.

Thanks, Will

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
How do I add cells by highlighting them? Tim Excel Discussion (Misc queries) 2 September 7th 09 10:22 PM
Highlighting Cells perezianda Excel Worksheet Functions 3 October 19th 06 11:39 PM
highlighting cells robbie Excel Discussion (Misc queries) 1 September 21st 06 11:26 AM
HIGHLIGHTING CELLS Dave803 Excel Discussion (Misc queries) 6 November 28th 05 12:29 AM
Highlighting blanks via GO TO SPECIAL is not highlighting blank cells - HELP, I'm totally stuck. Jamie Furlong Excel Discussion (Misc queries) 6 August 28th 05 09:27 PM


All times are GMT +1. The time now is 05:06 AM.

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

About Us

"It's about Microsoft Excel"