Sheets in Workbook

R

robert morris

I have a workbook with multiple sheets which have been renamed. Is there a
way to arrange the named sheets in alphabetical on the tool bar?

Bob M.
 
R

robert morris

Sorry, I did mean the row of tabs. Thanks for the link. I wil check there.

Bob M.
 
J

JE McGimpsey

Why do you hope that?

The worksheet tabs ARE just a toolbar:

Commandbars("Workbook tabs")

You can activate sheet "Sheet3" with

Commandbars("Workbook tabs").Controls("Sheet3").Execute
 
J

JE McGimpsey

Not saying you would, necessarily - that's only one way to activate. A
more straightforward way would be

Sheets("Sheet1").Activate

But you *could* enter either in the Immediate Window of the VBE. Or you
could use either command in a macro.

I was just pointing out that the worksheet tabs were indeed a toolbar...
 
Top