Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("B3:B15")) Is Nothing Then ' B3:B15 à modifier selon besoin
Dim DL%, L%, Nom$
DL = Range("B65500").End(xlUp).Row
For L = 3 To DL
Nom = Cells(L, "C")
If Nom = "Personne A" Or Nom = "Personne E" Or Nom = "Personne F" Then
Cells(L, "C").ClearComments ' Au cas où un commentaire est déjà présent
Cells(L, "C").AddComment
Cells(L, "C").Comment.Text Text:="Attention ! " & Chr(10) & "Ceci est un commentaire." ' Evidemment à modifier
Else
Cells(L, "C").ClearComments...