Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Target.Comment Is Nothing Then
With Target.Font
.Color = vbRed
.Bold = True
End With
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.NoteText <> "" Then
With ActiveCell
.Font.ColorIndex = 3
.Font.Bold = True
End With
End If
End Sub
Option Explicit
Sub Commentaires_repérer()
With Cells.SpecialCells(xlCellTypeComments).Font
.ColorIndex = 3
.Bold = True
End With
End Sub