A family of Microsoft word processing software products for creating web, email, and print documents.
Sorry, I was referring to Autonumbering paragraph format, not {AUTONUM} fields.
With a regular paste, the {DOCVARIABLE} field is rendered null because the variable does not exist in the new document.
You need to unlink fields before copying, in order convert them to their equivalent values. After selecting text In the original Word document:
Selection.Fields.Unlink 'Convert to field results
Selection.Copy
ActiveDocument.Undo 'Restore fields
In case you just opened the source document to copy text from, you'll be able to close it without a "Save?" prompt using this statement:
ActiveDocument.Saved = True
Then switch to the temp document and use a regular Selection.Paste to preserve the format.