Converting a cell into a comment

P

pasbillhen

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.
 
A

Allllen

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.
 
Top