Sub 改名1()
Dim x As Integer, sht As Worksheet
x = 1
For Each sht In Worksheets
If sht.Name <> "汇总" And sht.Name <> "11" Then
sht.Name = Left(Sheets("11").Cells(x, 1).Value, Len(Sheets("11").Cells(x, 1).Value) - 5)
x = x + 1
End If
Next
End Sub