Sheets in Workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 
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...
 
Back
Top