Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / Visual Basic

Sorting Worksheets in Excel using VBA

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
13 Jan 2011CPOL 13.9K   4  
Sorting worksheets in Excel using VBA

Imagine that you have a large file with 20 or more worksheets. It could be, for instance, a file with snapshot financial models for the companies in your coverage universe or a breakdown of home sales in different regions of the city.

You want to sort these worksheets into some kind of order that would allow you and your team to access your data more quickly. The SortSheets macro will help you to sort your sheet tabs into any kind of order or metric you want (e.g., alphabetically, by ranking, etc.) using the qsort algorithm (an explanation of the algorithm can be found at http://en.wikipedia.org/wiki/Quicksort).

Exhibit 1A: A Sample File with Multiple Worksheets (Unsorted)

unsorted

Exhibit 1B: A Sample File with Multiple Worksheets (Sorted)

sorted

Exhibit 2: SortSheets Macro (VBA)

VB.NET
Sub SwapSheets(S1 As Integer, S2 As Integer)
        Dim Sh1 As Worksheet, Sh2 As Worksheet
        Set Sh1 = Sheets(S1)
        Set Sh2 = Sheets(S2)
        Sh1.Move Before:=Sh2
        Sh2.Move Before:=Sheets(S1)
End Sub
Function QSortPartitionSheets(L As Integer, R As Integer, 
                                Pvt As Integer) As Integer
        Dim PivotValue As String
        Dim SI As Integer, I As Integer
        PivotValue = Sheets(Pvt).Name
        SwapSheets Pvt, R
        SI = L
        For I = L To R - 1
                If Sheets(I).Name <= PivotValue Then
                        SwapSheets I, SI
                        SI = SI + 1
                End If
        Next
        SwapSheets SI, R
        QSortPartitionSheets = SI
End Function
Sub QSortSheets(L As Integer, R As Integer)
        Dim Pvt As Integer
        Dim NewPvt As Integer
        If R > L Then
                NewPvt = QSortPartitionSheets(L, R, L)
                QSortSheets L, NewPvt - 1
                QSortSheets NewPvt + 1, R
        End If
End Sub
Public Sub SortSheets()
        QSortSheets 1, Sheets.Count
End Sub

The code in Exhibit 2 allows you to sort your worksheets alphabetically. To sort by some other metric (e.g. ranking, regional sales numbers, etc.), simply change QSortPartitionSheets to use variants instead of strings, and define a function to lookup the value using the sheet name (as demonstrated in Exhibit 3).

Exhibit 3: Modified QSortPartitionSheets (VBA)

VB.NET
Function YourFunction(SheetName As String) As Variant
' ... Returns the ranking of the company, the sales number 
' of the region, etc.
End Function
Function QSortPartitionSheets(L As Integer, R As Integer, 
        Pvt As Integer) As Integer
        Dim PivotValue As Variant
        Dim SI As Integer, I As Integer
        PivotValue = YourFunction(Sheets(Pvt).Name)
        SwapSheets Pvt, R
        SI = L
        For I = L To R - 1
                If YourFunction(Sheets(I).Name) <= PivotValue Then
                        SwapSheets I, SI
                        SI = SI + 1
                End If
        Next
        SwapSheets SI, R
        QSortPartitionSheets = SI
End Function
This article was originally posted at http://xlspot.com/pebble/2010/05/13/1273755322328.html

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Xlspot.com
Canada Canada
I am a software developer (consultant) from Canada. I specialize in Microsoft Office development and work with VBA, C++, and C#. I also know how to do a lot with Excel spreadsheets. I am currently doing freelance development and consulting focussed on MS Office customization (Excel,Access,Outlook,Powerpoint). Visit my blog at http://xlspot.com/blog.

Comments and Discussions

 
-- There are no messages in this forum --