Excel

zimako -  
Morgothal Messages postés 1350 Statut Membre -
Bonjour,

comment inserer automatiquement les informations dans les commentaires de cellules dans excel?

1 réponse

Morgothal Messages postés 1350 Statut Membre 183
 
Bonjour,


Sub insérer_commentaire()

Range("A1").AddComment
Range("A1").Comment.Visible = True
Range("A1").Comment.Text Chr(10) & "Ton texte ou ta variable ici"

End Sub

A+
0