Dim myRange as Range
Set myRange= Range("A1:A100")
Dim myVal as String
myVal = Range("A1").Value
Dim sTxt As String
Selection.Copy
sTxt = GetClipboard()
SetClipboard (sTxt)
That is some really important detail that you want to be sure to include in your request. Don't skimp on details when posting your question. The better the question, the better the help you will get. Seeing what you are talking about, I am not sure that I am going to be able to help you (in which case, I wouldn't have replied, and it would have still appeared as an Unanswered thread").When I copy a range (CTRL+C) and paste in Word (CTRL+V) I get a table, I want to get plain text instead without using pastespecial/pastevalues.
SO I want to set a string variable with this range plain text so I can put in clipboard.