copy data to comments

R

Richard Miller

Does anyone know how to copy data from one cell to comments of another cell?
 
J

Jason Morin

Try this:

Sub CopytoComment()
Range("B1").Comment.Text (Range("A1"))
End Sub

Note: I'm assuming B1 already has a comment. Also,
anything already in the comment will be overwritten when
macro is run.

HTH
Jason
Atlanta, GA
 
Top