re,
Trouvé sur le net et adapté pour test.
Si cela te convient, il te reste à l'adapter.
Cordialement.
Sub col_com()
If Not (Cells(1, 1).Comment Is Nothing) Then 'test s'il y a un commentaire dans la cellule
Cells(1, 1).Interior.color = 255'colorie la cellule en rouge
'Cells(1, 2).AddComment (Cells(1, 1).Comment.Text) 'ajout du commentaire dans la seconde avec le texte de la première cellule
End If
End Sub