worksheet sorting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

does somebody know that how can I sort worksheets by name in a workbook?

thanks in advance
 
you could try this:

Sub Test()
Dim wsAfter As Integer
Dim wsBefore As Integer
For wsAfter = 1 To Worksheets.Count
For wsBefore = wsAfter To Worksheets.Count
If UCase(Worksheets(wsBefore).Name) < _
UCase(Worksheets(wsAfter).Name) Then _
Worksheets(wsBefore).Move Before:=Worksheets(wsAfter)
Next
Next
End Sub

or this:

http://www.cpearson.com/excel/sortws.htm

Regards,
KL
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top