Bonjour Stayssou,
Voici un exemple (selon votre fichier)
Sub OutlookTask()
' nécessite la référence à Microsoft Outlook XX.X Object Library
Dim appOutlook As Outlook.Application
Set appOutlook = CreateObject("Outlook.Application")
Set myTask = appOutlook.CreateItem(olTaskItem)
rw = 2
TextBody = Cells(rw, 1) & " - " & Cells(rw, 2) & " - " & Cells(rw, 3) & Chr(10) & "*ATTENTION: Fin de validité : " & Cells(rw, 5)
With myTask
.Subject = "Mon Sujet de Tâche" '? aucune idée
.DueDate = DateSerial(Year(Cells(rw, 3)) + 1, Month(Cells(rw, 3)) - 1, Day(Cells(rw, 3)))
.Body = TextBody
' .Recipients.Add ("youremail@domain.com")
End With
myTask.Save
Set myTask = Nothing
Set appOutlook = Nothing
End Sub