Sub Code_Balance()
'
' Code_Balance Macro
'
' Touche de raccourci du clavier: Ctrl+e
'
ActiveCell.ClearComments
ActiveCell.AddComment
ActiveCell.Comment.Visible = True
ActiveCell.Comment.Text Text:="8075:" & Chr(10) & "8095:" & Chr(10) & "8215:" & Chr(10) & "8345:" & Chr(10) & "8551:"
ActiveCell.Comment.Shape.TextFrame.AutoSize = True
'***Masque le commentaire***
ActiveCell.Comment.Visible = False
'***************************
With ActiveCell.Comment.Shape
.TextFrame.Characters.Font.Bold = True
.OLEFormat.Object.Interior.ColorIndex = 3
End With
End Sub