This macro in Excel allows you to display or show a particular comment in Excel. This will make the desired comment visible even when you are not hovering over the cell that contains the comment. This is a great macro to use to display certain important comments throughout a worksheet or workbook in Excel.
To use the macro simply replace the A1 range cell reference with a reference to the location of the cell that contains the comment which you want to display.
Sub Display_Single_Comment()
'This macro displays a single comment that is in Excel - means you don't have to hover over it to read it
Range("A1").Comment.Visible = True
End Sub