New Excel Forum

This forum has been moved to TeachExcel.com

Ask all future questions in the New Excel Forum.

ExcelKey

excel formatting

Formulas, Functions, Formatting, Charts, Data Analysis, etc.

excel formatting

Postby Jimhporter48 » Tue Dec 20, 2011 8:36 am

How do I change the font color in my tabs?
  • 0

Jimhporter48
Rookie
 
Posts: 4
Joined: Dec 20, 2011
Reputation: 0

Re: excel formatting

Postby k0st4din » Tue Dec 20, 2011 1:25 pm

Hi, right klick with mouse and see picture.
Regards
  • 0

You do not have the required permissions to view the files attached to this post.
So ...
1. *Consider well what is your wish.
2. *Make a sample table
3. *Describe in detail what you want to happen is to be understood, not only by yourself.
4. And if you help someone else who needs help. :) ;)
k0st4din
Excel Junkie
 
Posts: 217
Joined: Dec 7, 2011
Location: UK
Reputation: 3
Excel Version: 2003, 2007

Re: excel formatting

Postby Jimhporter48 » Wed Dec 21, 2011 4:03 pm

I knew how to change the "TAB" color. I was wanting to find out how to change the "FONT COLOR" in the tab.
  • 0

Jimhporter48
Rookie
 
Posts: 4
Joined: Dec 20, 2011
Reputation: 0

Re: excel formatting

Postby Don » Wed Dec 21, 2011 4:33 pm

You're really not going to be able to do that like you want. The tab font color will change based on the tab's background color, but there is no way to control the font color of the tab directly.
  • 0

Don
Moderator
 
Posts: 733
Joined: Dec 4, 2011
Reputation: 2
Excel Version: 2010

Re: excel formatting

Postby Jimhporter48 » Thu Dec 22, 2011 9:41 am

Don,


Thanks. It appears that the multiple tab sheets that are in the document are colored blue but a couple of them are black. All of the tabs are the same color, I believe. Is there a way to make sure all of the tabs are the same color without going into each one individually?

Thanks.
  • 0

Jimhporter48
Rookie
 
Posts: 4
Joined: Dec 20, 2011
Reputation: 0

Re: excel formatting

Postby Don » Thu Dec 22, 2011 10:46 am

You could use a macro to do this, but if you only have 10 or so sheet tabs, it's really easier to just do it by hand this one time.

But if you'd like a macro, here one is:

Code: Select all
Sub Change_All_Tab_Color()


For i = 1 To Sheets.Count

    Sheets(i).Tab.ThemeColor = xlThemeColorLight1

Next i


End Sub



This will change the color of all sheet tabs in the workbook. You might have to reference the colors differently depending on the version of Excel that you are using. But, to change the color, just change "xlThemeColorLight1" to whatever you want. To get a list of all colors and their names, just do a google search or record a macro of you changing a tab's color and copy and paste the name of the color from that recorded macro into this macro.
  • 0

Don
Moderator
 
Posts: 733
Joined: Dec 4, 2011
Reputation: 2
Excel Version: 2010

Re: excel formatting

Postby Jimhporter48 » Thu Dec 22, 2011 2:29 pm

Don,
Thanks, I appreciate it.
Jim
  • 0

Jimhporter48
Rookie
 
Posts: 4
Joined: Dec 20, 2011
Reputation: 0


Return to General Excel Questions

Who is online

Users browsing this forum: No registered users and 244 guests