Sorry about that. Believe it or not, my old eyes didn't see that variable.
Code:
Option Explicit
Sub mkeShs()
Dim i As Integer
Dim Name As String
Name = "Test-"
Application.CopyObjectsWithCells = False
For i = 1 To 11
Sheets("SH-1").Copy After:=Sheets(Sheets.Count)
ActiveSheet.Name = Name & i
Next i
Application.CopyObjectsWithCells = True 'reset
End Sub
The previous macro didn't start at the number you were hoping for because 3 sheets already existed. So vba began with the next number after the already existing number of sheets.