Digamos que temos dados em A1 por meio de B100 . Se você mudar de ideia e aceitar uma solução baseada em macro, tente o seguinte:
Sub CommentMaker()
Dim A As Range, aa As Range
Set A = Range("A1:A100")
A.ClearComments
For Each aa In A
aa.AddComment
aa.Comment.Text Text:=CStr(aa.Offset(0, 1).Value)
Next aa
End Sub