Listbox Data to Cell Comment

T

Troy H

I have a listbox populated with data. I would like to take this data and move it to a comment box in a cell. The cell address is not important as I have that one figured out, but I am having problems trying to figure out how to take the data and move it to a cell's comment box

Thanks in Advance for the help.
 
C

chris

try this
if Listbox1.ListCount = 0 Then Exit Su
Range("A1").AddComment Listbox1.Lis

----- Troy H wrote: ----

I have a listbox populated with data. I would like to take this data and move it to a comment box in a cell. The cell address is not important as I have that one figured out, but I am having problems trying to figure out how to take the data and move it to a cell's comment box

Thanks in Advance for the help.
 
Top