Bonjour
Ce n'est pas le script qu'il faut mais plutôt un fichier
A tester
Sub InsertionComment()
Dim MyCmt As String
Dim LaCell As Range
Set LaCell = ActiveCell
MyCmt = InputBox("Inscrivez Nom, N° de Ticket, Commentaire ")
With LaCell
.AddComment
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 12611584
.TintAndShade = 0
.PatternTintAndShade = 0
With Selection
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
With .Cells(1, 1).Comment
.Text Text:=MyCmt
End With
End With
End With
End With
Selection.Merge
End Sub