How to use Confirm prompt box in Excel
Note:- Green hightlight you can change
Dim response As VbMsgBoxResult
response = MsgBox("Do you want to Import image for ppt ", vbYesNo + vbQuestion, "Confirmation")
If response = vbYes Then
Else
MsgBox "Pls Paste image manual for ppt"
End If