Bonjour,
Si la date stockée est une date valide :
Private Sub DTPicker1_Change()
With Sheets("Croix Sécurité")
.Range("M8") = Day(DTPicker1.Value)
.Range("N8") = Month(DTPicker1.Value)
.Range("O8") = Year(DTPicker1.Value)
End With
End Sub
Si la date est un texte au format JJ/MM/AAAA :
Private Sub DTPicker1_Change()
With Sheets("Croix Sécurité")
.Range("M8") = Split(DTPicker1.Value, "/")(0)
.Range("N8") = Split(DTPicker1.Value, "/")(1)
.Range("O8") = Split(DTPicker1.Value, "/")(2)
End With
End Sub