+ Reply to Thread
Results 1 to 2 of 2

Automatic numbering of spreadsheets

  1. #1
    Registered User
    Join Date
    05-05-2006
    Posts
    1

    Question Automatic numbering of spreadsheets

    Is there a way in which to either use a formula or another method of being able to automatically number spreadsheets without having to do so manually?

  2. #2
    Chip Pearson
    Guest

    Re: Automatic numbering of spreadsheets

    You need a VBA procedure:

    Sub AAA()
    Dim WS As Worksheet
    For Each WS In ActiveWorkbook.Worksheets
    WS.Name = WS.Index
    Next WS
    End Sub




    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com


    "Taylor" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Is there a way in which to either use a formula or another
    > method of
    > being able to automatically number spreadsheets without having
    > to do so
    > manually?
    >
    >
    > --
    > Taylor
    > ------------------------------------------------------------------------
    > Taylor's Profile:
    > http://www.excelforum.com/member.php...o&userid=34166
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=539289
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1