copying to the clipboard

G

greg

This should be easy.
I want to select a cell. then copy the comment from a cell into the
clipboard.

To get the comment I can
Excel.Selection.Comment.Text


for copying to the clipboard. Googline I see a clipboard object. people
use:
Clipboard.setText

but clipboard is not an object for me.
Do you have to add a reference in?
dim it as something?

thanks
 
P

Per Jessen

Hi

You can not copy a comment into the clip board, but you can work with it
like this:

Sub test()
Dim sComm As String
sComm = Selection.Comment.Text
With Worksheets(1).Range("B1").AddComment
.Visible = False
.Text sComm
End With
End Sub

Regards,
Per
 

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