Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a workbook with sheets that have similar names. The only difference
between the worksheet names is the numbers included in them. Is it possible, using a macro, to organize the worksheets in numerical order? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Depends upon where "included numbers" are located in the sheet name.
Mike's macro will sort by numbers included within or at either end of sheet names. Sub sort_sheets() 'Mike H June 13th, 2007 Dim I As Integer, J As Integer For I = 1 To Sheets.Count - 1 For J = I + 1 To Sheets.Count If UCase(Sheets(I).Name) UCase(Sheets(J).Name) Then Sheets(J).Move befo=Sheets(I) End If Next J Next I End Sub Gord Dibben MS Excel MVP On Mon, 26 Oct 2009 12:21:02 -0700, TGalin wrote: I have a workbook with sheets that have similar names. The only difference between the worksheet names is the numbers included in them. Is it possible, using a macro, to organize the worksheets in numerical order? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you. This is what I needed.
"Gord Dibben" wrote: Depends upon where "included numbers" are located in the sheet name. Mike's macro will sort by numbers included within or at either end of sheet names. Sub sort_sheets() 'Mike H June 13th, 2007 Dim I As Integer, J As Integer For I = 1 To Sheets.Count - 1 For J = I + 1 To Sheets.Count If UCase(Sheets(I).Name) UCase(Sheets(J).Name) Then Sheets(J).Move befo=Sheets(I) End If Next J Next I End Sub Gord Dibben MS Excel MVP On Mon, 26 Oct 2009 12:21:02 -0700, TGalin wrote: I have a workbook with sheets that have similar names. The only difference between the worksheet names is the numbers included in them. Is it possible, using a macro, to organize the worksheets in numerical order? . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I resort numerical info into numerical order | Excel Worksheet Functions | |||
organize a list of names in alphabetical order | Excel Discussion (Misc queries) | |||
What is the best way to organize a data in order to PRINT specific | Excel Discussion (Misc queries) | |||
Need organize numbered order | New Users to Excel | |||
sort worksheets in numerical order | Excel Discussion (Misc queries) |