Hi
Is there a way to sort the order of the sheet, depending on the name of the sheets?
i.e.
I have several workbooks with names like "Sch 13", "Sch 8A" and "Sch 8B".
I would like a way to sort these by name or the number they contain.
Thanks
Hi
Is there a way to sort the order of the sheet, depending on the name of the sheets?
i.e.
I have several workbooks with names like "Sch 13", "Sch 8A" and "Sch 8B".
I would like a way to sort these by name or the number they contain.
Thanks
Hi Ctech,
Try Chip Pearson's procedure:
'==============>>
Sub SortWorksheets()
'Chip Pearson
Dim N As Integer
Dim M As Integer
Dim FirstWSToSort As Integer
Dim LastWSToSort As Integer
Dim SortDescending As Boolean
SortDescending = False
If ActiveWindow.SelectedSheets.Count = 1 Then
FirstWSToSort = 1
LastWSToSort = Worksheets.Count
Else
With ActiveWindow.SelectedSheets
For N = 2 To .Count
If .Item(N - 1).Index <> .Item(N).Index - 1 Then
MsgBox "You cannot sort non-adjacent sheets"
Exit Sub
End If
Next N
FirstWSToSort = .Item(1).Index
LastWSToSort = .Item(.Count).Index
End With
End If
For M = FirstWSToSort To LastWSToSort
For N = M To LastWSToSort
If SortDescending = True Then
If UCase(Worksheets(N).Name) > _
UCase(Worksheets(M).Name) Then
Worksheets(N).Move Before:=Worksheets(M)
End If
Else
If UCase(Worksheets(N).Name) < _
UCase(Worksheets(M).Name) Then
Worksheets(N).Move Before:=Worksheets(M)
End If
End If
Next N
Next M
End Sub
'<<==============
--
---
Regards,
Norman
"Ctech" <Ctech.1z1yfy_1132921802.7575@excelforum-nospam.com> wrote in
message news:Ctech.1z1yfy_1132921802.7575@excelforum-nospam.com...
>
> Hi
>
> Is there a way to sort the order of the sheet, depending on the name of
> the sheets?
>
> i.e.
>
>
> I have several workbooks with names like "Sch 13", "Sch 8A" and "Sch
> 8B".
> I would like a way to sort these by name or the number they contain.
>
>
> Thanks
>
>
> --
> Ctech
> ------------------------------------------------------------------------
> Ctech's Profile:
> http://www.excelforum.com/member.php...o&userid=27745
> View this thread: http://www.excelforum.com/showthread...hreadid=488136
>
Hi Ctech,
I should have additionally suggested that you visit Chip Pearson's Sorting
Worksheets page for additional information and material.
---
Regards,
Norman
"Ctech" <Ctech.1z1yfy_1132921802.7575@excelforum-nospam.com> wrote in
message news:Ctech.1z1yfy_1132921802.7575@excelforum-nospam.com...
>
> Hi
>
> Is there a way to sort the order of the sheet, depending on the name of
> the sheets?
>
> i.e.
>
>
> I have several workbooks with names like "Sch 13", "Sch 8A" and "Sch
> 8B".
> I would like a way to sort these by name or the number they contain.
>
>
> Thanks
>
>
> --
> Ctech
> ------------------------------------------------------------------------
> Ctech's Profile:
> http://www.excelforum.com/member.php...o&userid=27745
> View this thread: http://www.excelforum.com/showthread...hreadid=488136
>
Do you have a link?
Hi Ctech,
My apologies - I noticed the missing link and was sure that I included it in
a follow-up post.
The link is:
http://www.cpearson.com/excel/sortws.htm
---
Regards,
Norman
"Ctech" <Ctech.1z24p0_1132929908.8295@excelforum-nospam.com> wrote in
message news:Ctech.1z24p0_1132929908.8295@excelforum-nospam.com...
>
> Do you have a link?
>
>
> --
> Ctech
> ------------------------------------------------------------------------
> Ctech's Profile:
> http://www.excelforum.com/member.php...o&userid=27745
> View this thread: http://www.excelforum.com/showthread...hreadid=488136
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks