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?![]()
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" <Taylor.27cccb_1146843307.398@excelforum-nospam.com>
wrote in message
news:Taylor.27cccb_1146843307.398@excelforum-nospam.com...
>
> 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
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks