How to install your new code
- Copy the Excel VBA code
- Select the workbook in which you want to store the Excel VBA code
- Press Alt+F11 to open the Visual Basic Editor
- Choose Insert > Module
- Edit > Paste the macro into the module that appeared
- Close the VBEditor
- Save your workbook (Excel 2007+ select a macro-enabled file format, like *.xlsm)
Sub GetComment()
Dim r As Range
Application.ScreenUpdating = False
For Each r In Range("C2:C" & Range("C" & Rows.Count).End(xlUp).Row).Cells
If Not Range(r.Value).Comment Is Nothing Then
With r.Offset(, 1)
.ClearComments
.AddComment (Range(r.Value).Comment.Text)
.Comment.Visible = False
End With
End If
Next r
Application.ScreenUpdating = True
End Sub
To run the Excel VBA code:- Press Alt-F8 to open the macro list
- Select a macro in the list
- Click the Run button
Bookmarks