How can I copy the certain cell in clipboard. This is my code:
Sub Button1_Click()
Dim clipboard As MSForms.DataObject
Set clipboard = New MSForms.DataObject
Dim str1 As String
clipboard.SetText ""
clipboard.PutInClipboard
clipboard.SetText ActiveSheet.Range("G11")
clipboard.PutInClipboard
End Sub
But in clip board the Icon that I want is like Excel Cell Copied not text copied.
Like this picture