Converting a cell into a comment

G

Guest

I would like to take information from a cell and convert it into a comment in
a different cell. Is that possible without typing the information into the
comment field.
 
G

Guest

Yes, you can do that with a macro like this

Sub AddComment()
Range("A2").AddComment Text:=Range("A1").Value
End Sub

It will put whatever is written in cell A1 into a comment in cell A2.
 

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