Insert worksheet AFTER current?

  • Thread starter Thread starter AN
  • Start date Start date
A

AN

How can you change the default so that a new worksheet
inserts AFTER the current one not before (default)?
 
You can't really (it follows the same convention as inserting rows or
columns). But you can write your own macro:

Public Sub InsertWorksheet()
Worksheets.Add After:=ActiveSheet
End Sub

You could then modify your menu to assign the macro to a toolbar button,
a keyboard shortcut, or the insert/worksheet command.
 
I don't know how to do it in default, but it is easy to change th
orders after you create the sheet. Just right click and hold the ta
on the bottom of the sheet you want to move and move to where you wan
it in the order.

To
 
Back
Top