Tab colours

  • Thread starter Francis Hookham
  • Start date
F

Francis Hookham

Any way of colouring the worksheet tabs and/or the type within them?

It's a bit academic since the same can be achieved with coloured icons on a
custom toolbar which select activate the required sheet. I just wondered if
it would be an easier way, if possible.

(I'm using XL 2002 but it will also have to run on Mac 2004)

Francis Hookham
 
P

paul.robinson

Hi
Activesheet.Tab.Colorindex = 5

will colour the tab blue. I don't think you can get at the font in a
tab, but could be wrong about that.
regards
Paul
 
J

JE McGimpsey

And note that it won't work cross-platform, so you'd have to use
conditional compilation:

#If Mac Then
'display toolbar
#Else
Activesheet.Tab.ColorIndex = 5
#End if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Sheet Order _ Numbering 7
2008 XL - Line return 2
Word count 2
Using/Managing Sheet Tabs 0
VBA toolbars 4
Drop down box font size 1
Custom buttons 4
Auto Fill Options 1

Top