hrmmmmm...... okay, assuming what I pasted before was correct this is what I tried with your suggestion:
Sub Singleclick(ByVal Target As Range) 'single click version
If Intersect(Target, Range("A1:J281")) Is Nothing Then Exit Sub
Dim DataObj As New MSForms.DataObject
Dim S As String
S = "ActiveCell.Text"
DataObj.SetText S
DataObj.PutInClipboard
Dim DataObj As New MSForms.DataObject
Dim S As String
DataObj.GetFromClipboard
S = DataObj.GetText
Debug.Print S
End Sub
Still not working unfortunately. This is so frustrating, I'm positive there has to be a way because I'm able to copy and paste text directly from notepad so if it works on notepad, why isn't it working for excel. grrrrrrr.....
Thanks again btw Mr Excel, if you have any other suggestions please feel free to share.