Have a lot of worksheets but the worksheet names are arranged in a random order? It will be a pain moving the sheets one by one to sort them out! You can sort all worksheets by name using Macros in Excel!

Make sure your Excel has the Developer Tab enabled following this tutorial.

I explain how you can do this below step by step!

What does it do?

Sort all worksheets by name alphabetically

Copy Source Code:


Sub SortAllWorksheetsByName()

Dim i As Integer
Dim j As Integer

'We use two loops to sort the sheets in ascending order
For i = 1 To Sheets.Count
For j = 1 To Sheets.Count - 1
If UCase$(Sheets(j).Name) > UCase$(Sheets(j + 1).Name) Then
Sheets(j).Move After:=Sheets(j + 1)
End If
Next j
Next i

End Sub

Final Result: 

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

Exercise Workbook:

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

DOWNLOAD EXCEL WORKBOOK


This is our worksheet ordering:

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

STEP 1: Go to Developer > Code > Visual Basic

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

 

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

 

STEP 3: Let us test it out!

Open the sheet containing the data. Go to Developer > Code > Macros

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

 

Make sure your macro is selected. Click Run.

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

 

With just one click, all of the worksheets are now sorted alphabetically!

 Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

 

How to Sort All Worksheets By Name Using Macros in Excel

 

101 Macros Book

HELPFUL RESOURCES:

Get access to 30+ Microsoft Excel & Office courses for ONLY $1.


Click here to get this limited-time $1 offer!



 

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Share on Facebook

Tweet about this on Twitter

Share on LinkedIn