Bonjour,
Etant novice en VBA Excel et après recherche dans livres, net, plusieurs essais, je n'arrive pas a appeler la procédure suivante d'une autre procédure :
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'
Do
Réponse = Application.InputBox("Entrez votre donnée", "INPUTBOX")
If Réponse = False Then
MsgBox "bouton annuler"
Exit Sub
End If
If Réponse = "" Then MsgBox "une réponse, svp!"
Loop Until Réponse <> ""
Range("A1") = Réponse
'
End Sub