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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top