If these objects are fields, you can change them into plain text with
myobject.unlink.
> I'm creating a Word document from an Excel document, and depending on various
> selections made in the Excel document, I include particular segments of text.
[quoted text clipped - 6 lines]
> special or other method to return the Word Objects into "native" (my
> terminology) Word. Any ideas?

Signature
Russ
drsmN0SPAMikleAThotmailD0Tcom.INVALID
Mark Parent - 10 Jul 2007 15:38 GMT
In case anyone else finds this post, and wonders how to handle it, I've found
one method that does the trick. After copying and pasting the word segment
into a new Word document, I open the object in a separate sessions, select
all the text, copy it to the clipboard then close the edit session. Back in
the new WORD document, I delete object, and paste in the text from the
clipboard.
Here is the code that is working for me just fine.
Thanks to Russ for his suggestion.
ThisWorkbook.Sheets("Texts").OLEObjects("Segment 1").Copy
appWD.Selection.Paste
appWD.Selection.ShapeRange(1).OLEFormat.DoVerb _
VerbIndex:=wdOLEVerbPrimary
appWD.Selection.WholeStory
appWD.Selection.Copy
appWD.ActiveWindow.Close
appWD.Selection.Delete
appWD.Selection.PasteAndFormat (wdPasteDefault)
> If these objects are fields, you can change them into plain text with
> myobject.unlink.
[quoted text clipped - 9 lines]
> > special or other method to return the Word Objects into "native" (my
> > terminology) Word. Any ideas?