Thanks! It works great!
Right before I have seen your answer I did something like this:
Sub copy_commment()
Rws = Selection.Rows.Count
N = 0
Do While N < Rws
Range(ActiveCell.Offset(0, -1).Value).Copy
ActiveCell.PasteSpecial xlPasteComments
ActiveCell.Offset(1, 0).Select
N = N + 1
Loop
End Sub
But your solution seems better as it works faster (it is not switching the active cell). I'm only an ocassional VBA user, so every time I want to do something using VBA I have to learn most things anew 
Thanks again!
Bookmarks