I am running an VBA and I have problem with cancel button, I want no change of value in cell if cancel button pressed or escape button. How to proceed?
Private Sub Workbook_Open()
Sheets("Start").Range("B1").Value = Application.InputBox(Prompt:="Insert Date", Type:=1)
Cancel = True
End Sub