vba msgbox yes no code example
Example 1: msgbox yes no vba excel
If MsgBox("Texte", vbYesNo, "Titre") = vbYes Then 'If the button Yes is clicked ...
Example 2: vba yes no box
Sub effacerB2()
If MsgBox("Etes-vous certain de vouloir supprimer le contenu de B2 ?", vbYesNo, "Demande de confirmation") = vbYes Then
Range("B2").ClearContents
MsgBox "Le contenu de B2 a été effacé !"
End If
End Sub