Private Sub Worksheet_SelectionChange(ByVal R As Range)
If Not Intersect(R, Range("e13")) Is Nothing Then
Application.ScreenUpdating = False
Application.EnableEvents = False
[a1] = ""
[e13] = ""
Sheets("Appels").Activate
toprint = ActiveCell.Offset(0, 1)
Sheets("Feuil1").Activate
ActiveCell = toprint
Application.EnableEvents = True
Application.ScreenUpdating = True
If MsgBox("RdV possible ?" & Chr(10) & Chr(10) & "Si Répondeur et appel avant = RdV possible, répondre OUI" & Chr(10) & Chr(10) & "Clic : OUI ou NON", vbQuestion + vbYesNo) <> vbNo Then
Sheets("Feuil1").Range("a1") = "Rappel RdV"
End If
[a1].Select
End If
End...