Need help finishing this code for a msgbox. If no is selected I want the Sub to End/Cancel, If yes is selected Sub will run its course. I have found plenty of info on making a msgbox but none show how to end the sub when no is selected.
Sub Insert_Row()
Dim Response
Response = MsgBox("Are Cells Dated?", vbYesNo, "Yes or No")
If Response = vbYes Then
Else
If Response = vbNo Then
End If
End If
Sheets("Sheet1").Activate
Rows("5:5").Select
Selection.Copy
Sheets("Sheet2").Select
Rows("3:3").Select
Selection.Insert
Range("C7").Select
End Sub