Sub SortArk()
Dim sh()
ReDim sh(Sheets.Count)
Application.ScreenUpdating = False
For t = 1 To Sheets.Count
sh(t) = Sheets(t).Name
Next
For t = 1 To Sheets.Count
For tt = t To Sheets.Count
If sh(t) > sh(tt) Then x = sh(t): sh(t) = sh(tt): sh(tt) = x
Next
Next
For t = 1 To Sheets.Count
Sheets(sh(t)).Move after:=Sheets(Sheets.Count)
Next
Application.ScreenUpdating = True
End Sub
"Stan" skrev: