Ozgrid, Experts in Microsoft Excel Spreadsheets
Javascript DHTML Drop Down Menu Powered by dhtml-menu-builder.com
Learn how to create Excel dashboards.

Add Excel Worksheets in Weekday Sequence

TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Add Worksheets to Excel in Day Sequence/Order

Got any Excel Questions? Free Excel Help .

Lot's More: Excel VBA

Add Excel Worksheets in Numeric Order.

See Also Add Worksheets || Add Worksheets in Month Order || Add Sheets in Numeric Order || Sort Excel Sheets/Worksheets

There are occasions where adding a new Worksheet to an Excel Workbook should be added in a Weekday sequence. For example, you may need to add Worksheets, name them in a day order (Monday to Sunday) and have the Worksheets in the correct Weekday position. The code below will do this

Sub AddWsInWeekDayOrder()

    Dim ws As Worksheet, wsTest As Worksheet

    Dim lMatch As Long, strTest As String

     

    On Error Resume Next

    Application.EnableEvents = False

     

    For Each ws In Worksheets

        lMatch = WorksheetFunction.Match(ws.Name, _

         Array("MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"), 0)

        strTest = Choose(lMatch, "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", _

        "SATURDAY", "SUNDAY")

        If lMatch <> 0 Then

            Set wsTest = Nothing

            Set wsTest = Sheets(strTest)

            If wsTest Is Nothing Then

                Sheets.Add After:=Sheets(ws.Index)

                ActiveSheet.Name = strTest

                Application.EnableEvents = True

                Exit Sub

            End If

        End If

    Next ws

    Sheets.Add().Name = "MONDAY"

    Application.EnableEvents = True

    On Error GoTo 0

End Sub

New & Less Than You Think: List Managers | Working With Excel Sheets In VBA | Excel Charting Lessons | Delete rows by condition | TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money

Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to special@ozgrid.com 31 days after purchase date.



Instant Download and Money Back Guarantee on Most Software

Try out: Analyzer XL | Downloader XL | Smart VBA | Trader XL Pro (best value) | ConsoXL | MergeXL | O2OLAP for Excel | MORE>>

Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!

Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS