Changing Tab Color With VBA
Activesheet.Tab.ColorIndex = 53
worked fine for me, but you probably won't really notice the change until
you select another sheet.
--
Regards,
Tom Ogilvy
"Minitman" wrote in message
...
Hey Kaak,
Thanks for the reply, it looks like it should work
But unfortunately, I just tried it and it did not work. It gave me an
idea. though.
I went back to the macro that I recorded:
Sheets("Jul-94").Select
ActiveWorkbook.Sheets("Jul-94").Tab.ColorIndex = 53
And change it to this:
Sheets(ActiveSheet.Name).Select
ActiveWorkbook.Sheets(ActiveSheet.Name).Tab.ColorI ndex = 53
Still doesn't change the tab color. Any other possibilities?
TIA
-Minitman
On Fri, 29 Jul 2005 03:33:42 -0500, Kaak
wrote:
ActiveWorkbook.Sheets(ActiveSheet.Name).Tab.Color Index = 53
|