moving multiple worksheets so that the current one is to the left

anna1964

New Member
Joined
Apr 11, 2019
Messages
1
I have over 50 worksheets tabs that I would like to organize with the current one at the left and all the previous ones in order. How can I move multiple tabs instead of one at a time.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Do you mean active one at far left of Tab Bar.

And you said:

and all the previous ones in order

Do you mean all the other ones. And what does in order mean.

In order by what?
 
Upvote 0
Do you mean like holding the CTRL button and selecting individual sheets with the mouse and moving them around? Or holding the Shift key and selecting a group and moving them around with the mouse?
This is what I did for the 30 plus sheets for organizing. I am assume this is what you mean.
 
Upvote 0
This Vba script will move the active sheet to The far left position on the Sheet Tab.
Making it Sheet(1)

Code:
Sub Move_Me()
'Modified 4/11/2019 10:54:44 PM  EDT
ActiveSheet.Move Before:=Sheets(1)
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,695
Messages
6,126,263
Members
449,307
Latest member
Andile

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top