I created a UserForm with TextBoxes.
I would like the data that gets entered into the TextBoxes to be pasted from the UserForm into specific locations of the word document when I click a command button on the UserForm.
This is relatively easy when working with Excel since I can reference the exact cell I want the data to be pasted into.
For example
Sub Commandbtn_Click()
With Sheets("Sheet1")
.Range("B11").Value = TextBox1.Text
.Range("C11").Value = TextBox2.Text
.Range("D11").Value = TextBox3.Text
End With
Unload Me
End Sub
However, how would I do this with a word document? How do I get the data to paste from the TextBox into the exact spot in the word document where I want it to go?