Copy & Rename Multiple Sheets

eforti

Board Regular
Joined
Aug 15, 2005
Messages
222
Hello All,
I'm interested in creating some VBA to copy multiple worksheets while also allowing a user to edit the names.

I have the following worksheets
- Template
- Template Timeline

I would like to create a macro that copies them into the same workbook (moved to end) with a popup that allows the user to enter an alternative to the word Template. So the user could enter something into the popup like "Magic" and the newly copied sheets would show
- Magic
- Magic Template

Any help would be appreciated!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try:
Code:
Sub CopySheets()
    Application.ScreenUpdating = False
    Dim reponse As String
    response = InputBox("Please enter an alternative for 'Template'")
    If response = "" Then Exit Sub
    Sheets("Template").Copy after:=Sheets(Sheets.Count)
    ActiveSheet.Name = response
    Sheets("Template Timeline").Copy after:=Sheets(Sheets.Count)
    ActiveSheet.Name = response & " Timeline"
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,827
Messages
6,181,194
Members
453,021
Latest member
pingpong7117

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