Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't quite understand what you are trying to do, but you could store the
names in order in an array and use code to name the sheets accordingly. Sub AAA() Dim SheetNames As Variant Dim N As Long Dim ArrOffset As Long SheetNames = Array("Sheet12", "Sheet5", "Sheet7") '<<<< CHANGE SHEET NAMES ArrOffset = IIf(LBound(SheetNames) = 0, 1, 0) For N = LBound(SheetNames) To UBound(SheetNames) Worksheets(N + ArrOffset).Name = SheetNames(N) Next N End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel, 10 Years Pearson Software Consulting www.cpearson.com (email on the web site) "Carl R" wrote in message ... I created a work book with Multiple sheet tabs. When I numerically personalize each tab I will not start in order of, example 1,2,3,4..... but start with 15,7,3,12.... can I get these tabs to Automatically go in order as I numerically personalize each sheet tab??? -- Microsoft Office 2003 Version Thank-you Carl R |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sheet order & speed | Excel Worksheet Functions | |||
How do I specify a tab order in a sheet | Excel Worksheet Functions | |||
Change Excel sheet order | Setting up and Configuration of Excel | |||
How do I create a fundraiser order sheet? | Excel Discussion (Misc queries) | |||
data from one sheet to several in sequential order! | New Users to Excel |