I'm trying to create a macro to simply paste the cell comments of whatever cell I've just "copied" into to the clipboard to whatever cell I've currently selected.
In Excel 2007, there is a button I can place on the toolbar to Paste-Values but there is no equivelant for Paste-Comments. I'm tired of always having to go through the Paste-Special menu.
The VBA line I've tried is:
Selection.PasteSpecial Paste:=xlPasteComments, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Any help would be appreciated.
In Excel 2007, there is a button I can place on the toolbar to Paste-Values but there is no equivelant for Paste-Comments. I'm tired of always having to go through the Paste-Special menu.
The VBA line I've tried is:
Selection.PasteSpecial Paste:=xlPasteComments, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Any help would be appreciated.