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

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
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,221,826
Messages
6,162,192
Members
451,752
Latest member
majbizzaki

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