hi, try this
Sub Button2_Click()
Dim name As String
If Not SheetExists("Missing Date") Then
MsgBox "Sheet: Missing Date doesn't exist!", vbOKOnly + vbCritical, "oops!"
Else
Sheets("Missing Date").Activate
'name = InputBox("Please Enter the Name of the Worksheet as dd-mmm-yyyy")
strDate = Application.InputBox(Prompt:="Enter a Date for Worksheet", Title:="Rename Sheet", Default:=Format(date, "Short Date"), Type:=1)
strDate = Format(strDate, "dd-mm-yyyy")
On Error GoTo ende:
ActiveSheet.name = strDate
End If
ende:
End Sub
Function SheetExists(SheetName As String) As Boolean
' returns TRUE if the sheet exists in the active workbook
SheetExists = False
On Error GoTo NoSuchSheet
If Len(Sheets(SheetName).name) > 0 Then
SheetExists = True
Exit Function
End If
NoSuchSheet:
End Function
Bookmarks