I am trying to copy from a word document to a excel document, when I do this with the code below it embeds the word document into the excel document rather than paste in the text.
How can I make it so it does not embed the word document but pastes in the text instead?
Dim objWord As Object, objDoc As Object
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open("\\Desktop\REPORT.doc")
objWord.Visible = True
objWord.Selection.WholeStory
objWord.Selection.Copy
Workbooks.Add
Selection.PasteSpecial