ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Setting sheet tab order based on sheet name (https://www.excelbanter.com/excel-programming/374913-setting-sheet-tab-order-based-sheet-name.html)

[email protected]

Setting sheet tab order based on sheet name
 
I have five sheets which I want to display in the following order:

# SheetName
1 Report
2 Project Listing
3 Project Analysis
4 Committed
5 Uncommitted

Is there a clean way to do this?

Thanks.


Jim Cone

Setting sheet tab order based on sheet name
 
Something like this...

Sub PositionSheets()
Dim varNames As Variant
Dim N As Long
varNames = Array("Uncommitted", "Committed", "Project Analysis", _
"Project Listing", "Report")
For N = LBound(varNames) To UBound(varNames)
Sheets(varNames(N)).Move befo=Sheets(1)
Next
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware




wrote in message
I have five sheets which I want to display in the following order:
# SheetName
1 Report
2 Project Listing
3 Project Analysis
4 Committed
5 Uncommitted
Is there a clean way to do this?
Thanks.



All times are GMT +1. The time now is 02:20 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com