You sure made it sound simple enough, I'm using Excel 2K, but I'm still learning the basics of programming, can you show me how I would apply it to where I have the options positioned in the following code? (the code - by the way is a huge time saver when you're data is loaded with comments)
Sub ExtractMoveComments()
Dim InputRange As Range
Set InputRange = Selection.Cells
On Error Resume Next
For Each CELL In InputRange
If CELL.Offset(0, 1).Value = "" Then
CELL.Offset(0, 1) = Mid(CELL.Comment.Text, Len _(CELL.Comment.Author) + 3)
Else
CELL.Offset(0, 1).EntireColumn.Insert
CELL.Offset(0, 1) = Mid(CELL.Comment.Text, Len _(CELL.Comment.Author) + 3)
CELL.ClearComments
CELL.Offset(0, 1).WrapText = False
'String = Replace(String, vbNewLine, ""

'String = Replace(String, Chr(10), ""

'String = Replace(String, Chr(13), ""
End If
Next CELL
End Sub