This is possibley really basic code but works hope it helps
Sub FIND_THE_COMMENT()
'
Rem WORKS FOR COLUMN A AND PUTS THE RESULT IN COLUMN B
Rem SETUP STICK A FEW COMMENTS IN COLUM A BETWEEN A1 and A100
Dim AAA As String
Range("a1").Select
Application.ScreenUpdating = False
For x = 1 To 100
If ActiveCell.NoteText > "" Then AAA = Cells.NoteText
If AAA > "" Then ActiveCell.Offset(0, 1).Value = AAA
AAA = ""
ActiveCell.Offset(1, 0).Select
Next
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.