...Improving Business Performance by Design
If you need to add a new sheet with a specific name, try use the following vba code.
Dim ws As Worksheet 'Creates a worksheet objectSet ws = Sheets.Add 'sets worksheet Object to new sheetws.Name = "SheetNewName" 'renames sheet