Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Change default fill color of selected cells?

How do I change the default fill color of selected cells, which is normally
very pale?
Office 2007, Win XP Pro


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,986
Default Change default fill color of selected cells?

One way is FormatCellsPatterns then select from the color palette and click
OK.

"Stan" wrote:

How do I change the default fill color of selected cells, which is normally
very pale?
Office 2007, Win XP Pro



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Change default fill color of selected cells?

I remember reading other posts which say that the background colours
in XL 2007 seem very pale, but as I don't have that version I haven't
paid much attention. Perhaps you can do a Google search to see if any
of the answers proposed in other threads work for you.

Hope this helps.

Pete

On Dec 23, 4:26*am, "Stan" <we@there wrote:
How do I change the default fill color of selected cells, which is normally
very pale?
Office 2007, Win XP Pro


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Change default fill color of selected cells?

Thanks, but that means I must do that sequence after I select cells.
What I need is a default (darker) color as cells are selected.
"JLGWhiz" wrote in message
...
One way is FormatCellsPatterns then select from the color palette and
click
OK.

"Stan" wrote:

How do I change the default fill color of selected cells, which is
normally
very pale?
Office 2007, Win XP Pro





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 230
Default Change default fill color of selected cells?

Try this code, below, ( right click the sheet and select view code, and
paste it there). You will have to fiddle with the ColorIndex number shown
here as 35 until you get the colour you want. I think the number range goes
to about 50 or so.
You may want to delete this part......
"If Target.Cells.Count 1 Then Exit Sub" part if it's not what you want,
( this part stops the procedure if more than one cell is selected at one
time.)
You may also want to alter the Range which I've set to A1:Z100

Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim wkArea As Range
Set wkArea = Range("A1:Z100")
If Target.Cells.Count 1 Then Exit Sub
With wkArea.Interior
.ColorIndex = 0
End With
With ActiveCell.Interior
.ColorIndex = 35
End With
End Sub

Rob

"Stan" <we@there wrote in message
...
Thanks, but that means I must do that sequence after I select cells.
What I need is a default (darker) color as cells are selected.
"JLGWhiz" wrote in message
...
One way is FormatCellsPatterns then select from the color palette and
click
OK.

"Stan" wrote:

How do I change the default fill color of selected cells, which is
normally
very pale?
Office 2007, Win XP Pro







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
Change the default color of Excel's selected cells GeorgeT Excel Discussion (Misc queries) 0 September 3rd 07 07:52 PM
Change default fill color Harm Ozinga Excel Discussion (Misc queries) 1 February 27th 07 04:00 PM
keeping the fill color I've selected as the default stevem Excel Worksheet Functions 3 February 3rd 07 09:49 PM
How do I change fill color default in excel 2003? bowler708 Excel Discussion (Misc queries) 1 January 2nd 05 09:59 PM
Default fill color change Cheyenne Excel Discussion (Misc queries) 2 December 15th 04 02:12 AM


All times are GMT +1. The time now is 11:20 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"