Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'd like to rearrange worksheets within a workbook so that they appear in
alphabetical order. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
See http://www.cpearson.com/excel/sortws.aspx
-- __________________________________ HTH Bob "trishk" wrote in message ... I'd like to rearrange worksheets within a workbook so that they appear in alphabetical order. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Right click a sheet tab, view code and paste this in and run it Sub Sortem() For x = 1 To Worksheets.Count For y = x To Worksheets.Count If UCase(Sheets(y).Name) < UCase(Sheets(x).Name) Then Sheets(y).Move Befo=Sheets(x) End If Next Next End Sub Mike "trishk" wrote: I'd like to rearrange worksheets within a workbook so that they appear in alphabetical order. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
rearrange date | Excel Discussion (Misc queries) | |||
rearrange text | Excel Worksheet Functions | |||
Rearrange a formula | Charts and Charting in Excel | |||
rearrange data by day | Excel Discussion (Misc queries) | |||
Function to Rearrange Name | Excel Worksheet Functions |