April 2006
Beginner
1114 pages
98h 16m
English
worksheet.Move(Before, After)
Moves the specified sheet to another location in the workbook.
|
Argument |
Settings |
|---|---|
|
|
Specifies an existing worksheet if you want to place the worksheet before that sheet |
|
|
Specifies an existing worksheet if you want to place the worksheet after that sheet |
The following code moves the KarmaFactor worksheet after the WombatBattingAverages worksheet:
ActiveWorkbook.Worksheets("KarmaFactor").Move
After:=Worksheets("WombatBattingAverages")Read now
Unlock full access