#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default sheet tab order

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

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default sheet tab order

I don't think you can make this automatic. (I don't even see a pattern so that
you could automate it.)

But you can drag and drop the sheet tabs in the order that you like.

(Or you can rightclick on the tab and choose Move or Copy and put it in the
order you want.)

Carl R wrote:

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


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default sheet tab order

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sheet order & speed BKO Excel Worksheet Functions 1 June 14th 07 11:40 AM
How do I specify a tab order in a sheet RDL Excel Worksheet Functions 1 June 3rd 06 11:30 PM
Change Excel sheet order KeithS Setting up and Configuration of Excel 1 February 19th 06 02:45 PM
How do I create a fundraiser order sheet? kathy Excel Discussion (Misc queries) 0 August 23rd 05 08:44 PM
data from one sheet to several in sequential order! firecord New Users to Excel 6 June 22nd 05 05:10 PM


All times are GMT +1. The time now is 08:09 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"