Various Methods of Inserting Text into a Word document:
Return to List
Selection.InsertAfter Text:=string' This method keeps inserted text selected Selection.TypeText string' Will also insert text (if text is selected - it will be replaced) Selection.InsertBefore string' Will insert the string prior to the current selected text or point Selection.InsertAfter string' Will insert the string after to the current selection or point