Time save macro to copy sheets

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone

I Have a sheet called "Mon Wk1"
That I need to copy to make every day of the week and for Wk1 - Wk5


so for example:
"Mon Wk1"
"Tue Wk1"
all the way to
"
Sun Wk5"

Please help if you can

Thanks

Tony
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Tony, in a column list all the sheet names you want to create, then adjust the code below:
Code:
Sub New_Sheets

Dim SheetNames as variant: SheetNames = Sheets("Sheet with new sheet names in Range A1_A35").cells(1,1).resize(35).Value
Dim wksSource  as Worksheet: Set wksSource = Sheets("CopyMe")
Dim x  as Long

Application.ScreenUpdating = False

For x = Lbound(SheetNames, 1) to Ubound(SheetNames, 1)
  wksSource.Copy After:=Sheets(Sheets.Count)
  Sheets(Sheets.Count).Name = SheetNames(x, 1)
Next x

Application.ScreenUpdating = True

Erase SheetNames: Set wksSource = Nothing

End Sub
Delete the helper sheet afterwards if you want.
 
Upvote 0
Or you could try this which just requires your initial sheet to be called 'Master'
Code:
Sub MakeSheets()
Dim rng As Variant
rng = Array("Sun ", "Sat ", "Fri ", "Thu ", "Wed ", "Tue ", "Mon ")
For counter = 5 To 1 Step -1
For Each rngElement In rng
    ThisWorkbook.Sheets("Master").Copy After:=Sheets("Master")
    ThisWorkbook.ActiveSheet.Name = rngElement + "Wk" + Format(counter)
Next
Next counter
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,925
Messages
6,122,303
Members
449,078
Latest member
nonnakkong

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