Sub hh() 'vloží nový list
Application.ScreenUpdating = False
x = Application.InputBox("Zadejte jméno nového listu", "Vložení nového listu")
If x = vbNullString Or x = False Then
Exit Sub
End If
For Each llist In ActiveWorkbook.Sheets
If llist.Name = x Then
MsgBox ("meno listu uz existuje")
Exit Sub
End If
Next llist
Sheets.Add after:=Worksheets(1)
ActiveSheet.Name = x
Sheets(x).Select
Application.ScreenUpdating = True
End Sub
citovat