Pinterest Pixel

Sort All Worksheets By Name Using Macros In Excel

Have a lot of worksheets but the worksheet names are arranged in a random order? It will... read more

Download Excel Workbook
Bryan
Posted on

Overview

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

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

Exercise Workbook:

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

Download excel workbookSort-All-Worksheets-By-Name.xlsm


This is our worksheet ordering:

Sort All Worksheets By Name Using Macros In Excel

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

 

STEP 3: Let us test it out!

See also  Unprotect Active Worksheet Using Macros In Excel

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

 

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

 Sort All Worksheets By Name Using Macros In Excel

 

How to Sort All Worksheets By Name Using Macros in Excel

 

101 Macros Book

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

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Sort All Worksheets By Name Using Macros In Excel | MyExcelOnline

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!