I'm using the following macro to create multiple worksheets.
–this follows the code
I would like the macro to append the subsequent sheet names as follows: Game 1, Game 2, Game 3, Game 4, etc. Currently it puts a number in brackets after the name to indicate its a duplicate sheet.
How do I adjust the code to achieve the desired results?
Thanks,
Tom
Code:
Sub ReplicateSheets()
Dim i As Integer
For i = 1 To 20
Sheets("Game").Copy after:=Worksheets(Worksheets.Count)
Next
End Sub
I would like the macro to append the subsequent sheet names as follows: Game 1, Game 2, Game 3, Game 4, etc. Currently it puts a number in brackets after the name to indicate its a duplicate sheet.
How do I adjust the code to achieve the desired results?
Thanks,
Tom