• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Excel 2016 - Change Default Color In Cell Color Drop Down Box

Billb2

Diamond Member
Is there a way to change the default color in the background color drop down box? Yellow is the default, but I want blue.

...and to be picky, I just want the default color changed for one particular spreadsheet when it opens, not every one that opens.

Thanks for your help.....
 
I want the yellow (default) color in the drop down box to be blue when the spreadsheet first opens.

2936971
 
Na, those change Excel for all spreadsheets. I just want the default blue on one particular spreadsheet.
What I want is to pIck blue from drop down, save and exit and when the sheet opens again blue should be the default (instead of always defaulting back to yellow).
 
This tip mainly is for Word but I think Mr. Wyatts idea of using a Macro to set the color may work in Excel as well. You may need to play with it to get the color you want.
I am not too well versed in using macros, but this may start you in the right direction.
https://wordribbon.tips.net/T000144_Changing_the_Default_Highlighting_Color.html

Changing the default highlight color:
On the Home tab of the ribbon, the default color for the Text Highlight tool is yellow. Larry wonders if there is a way to change the default so that it is, instead, "No Color."


The answer depends on what you mean by "default color." If you mean that the highlighting will be something other than yellow (including "No Color") when you first start Word, then the answer is no. There is no built-in ability to specify a default color according to this definition.


However, if your definition of "default color" means that what Word uses the next time you use the Text Highlight tool, then the answer is yes. You see, if you use the drop-down color selector next to the tool, whatever color you pick (including, again, "No Color") becomes the "default" color for all subsequent uses of the tool during your current session in Word.


Of course, you can change the highlight color when you first start Word by using an AutoExec macro to set the color. The macro using this special name, when stored in your Normal template, runs whenever you start Word, so it is a great place to specify the color you want. Here's how such a macro would look:


Sub AutoExec()
Options.DefaultHighlightColorIndex = wdNoHighlight
End Sub


 
Back
Top