Is there a way to keep a specific color on the toolbar?

  • Thread starter Thread starter bbpnthr
  • Start date Start date
Please use this area to describe what you are asking about. The topic in
the subject line is ambiguous.

bbpnthr wrote:
 
No. Yellow is the default.

You could create a small macro to apply a specific color.

Sub mycolor()
With Selection.Interior
.ColorIndex = 8
.Pattern = xlSolid
End With
End Sub

Assign it to a button or shortcut key combo.


Gord Dibben MS Excel MVP
 
I'm not sure what you're asking, but you could modify the color scheme (56
colors in xl2003 and below).

Tools|options|color tab|modify

This color scheme will travel with the workbook--it's not an application
setting. If you have multiple workbooks that need this, you'll have to do it
for each workbook.



bbpnthr wrote:
 
Back
Top