Macro to transfer data from Word to another Word document with bookmark
Hi guys , i have a word document with a list of data, and i want transfer all the data into another word document that i bookmark to replace it.
What should i put under the Selection.TypeText?
Application.Documents.Open ("C:\Users\jovany\Desktop\NEW WOSPC 9.2.1_RMIR - Rollout.doc")
Selection.GoTo What:=wdGoToBookmark, Name:="Bookmark"
ThisDocument.Activate
Selection.TypeText Text:=""
|