load data to cell comments

  • Thread starter Thread starter Souris
  • Start date Start date
S

Souris

I would like to retrieve data from my database to the spreasheet.

I just wanted to know is it possible to load data in to comments to the cell.

We can right click and see the comments for that particular cell which
stored in my database.

Your information is great appreicated,
 
Here's an example:

Sub comments()
For Each cell In ActiveSheet.Range("A1:A10")
cell.AddComment "Cell: " & cell.Address
Next cell
End Sub
 
Thanks for the message

Dan R. said:
Here's an example:

Sub comments()
For Each cell In ActiveSheet.Range("A1:A10")
cell.AddComment "Cell: " & cell.Address
Next cell
End Sub
 

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

Back
Top