Private Sub ButtonOK_Click()
If ActiveCell = Cells(ActiveCell.Row, 13) Or ActiveCell = Cells(ActiveCell.Row, 15) Then
If ActiveCell = Cells(ActiveCell.Row, 15) And CalendrierDateSELECT <= Date Then
Unload Me
Cells(ActiveCell.Row, 5).Select
Application.EnableEvents = True
Application.ScreenUpdating = True
Cells(ActiveCell.Row, 15) = ""
End If
If ActiveCell = Cells(ActiveCell.Row, 13) And CalendrierDateSELECT <= Date Then
MsgBox ("Vous devez sélectionner une date de Rappel !")
Else
ActiveCell = CalendrierDateSELECT
Unload Me
End If
End If
End Sub