Order of the Worksheet tabs across the bottom of the screen

  • Thread starter Thread starter Rich Mogy
  • Start date Start date
R

Rich Mogy

Hi All,
Is there a script that I could write that would put the worksheet tabs in
the order that I want them across the bottom of the screen.

Thanks in advance

Rich Mogy
 
Sure. Just use the Move method. E.g.:

Sheets("SheetTheFirst").Move Before:=Sheets("SheetTheSecond")
 
Back
Top