Si clic sur la "X" sans sélectionner de date alors
If ActiveCell = Cells(ActiveCell.Row, 15) Then
If CalendrierDateSELECT <= Date Then
Unload Me
Cells(ActiveCell.Row, 5).Select
Application.EnableEvents = True
Application.ScreenUpdating = True
Cells(ActiveCell.Row, 15) = ""
Exit Sub
End If
End If
If CalendrierDateSELECT <= Date Then
MsgBox ("Vous devez sélectionner une date de Rappel !")
Else
Cells(ActiveCell.Row, 13) = CalendrierDateSELECT
Unload Me
End If
End Sub