Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Sub ReverseSheets()
- Dim xCount As Integer
- xCount = Application.ActiveWorkbook.Worksheets.Count
- For i = 1 To xCount - 1
- Application.Worksheets(1).Move After:=Application.Worksheets(xCount - i + 1)
- Next
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment