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:Ā
Exercise Workbook:
This is our worksheet ordering:
STEP 1:Ā Go toĀ Developer > Code > Visual Basic
STEP 2:Ā Paste in your code andĀ Select Save. Close the window afterwards.
STEP 3:Ā Let us test it out!
Open the sheet containing the data. Go toĀ Developer > Code > Macros
Make sure your macro is selected. Click Run.
With just one click, all of the worksheets are now sorted alphabetically!
Ā
How toĀ Sort All Worksheets By Name Using Macros in Excel
Bryan
Bryan Hong is an IT Software Developer for more than 10 years and has the following certifications: Microsoft Certified Professional Developer (MCPD): Web Developer, Microsoft Certified Technology Specialist (MCTS): Windows Applications, Microsoft Certified Systems Engineer (MCSE) and Microsoft Certified Systems Administrator (MCSA).
He is also an Amazon #1 bestselling author of 4 Microsoft Excel books and a teacher of Microsoft Excel & Office at the MyExecelOnline Academy Online Course.