I read your input over and changed to this
Code:
Private Sub CommandButton1_Click()
With ActiveDocument
.Range.Text = TextBox1
End With
UserForm1.Hide
End Sub
This is working fine, but the reason I was using bookmarks was to place the text input into a specific place within the document (actually 3 places). So I was wondering if there is a better way other than bookmarks? I'm going to work with fields to see if that can achieve the goal, but right now bookmarks appear to be the best bet. Thanks