Hello guys, simple problem here:
Lets say I have an excel document called "Teste1" with the following data in it.

1.png

I want to tranfer this data to a word document with the name "Teste1". However I want to put whats inside A2 into the first Box as seen in the following picture and whats inside B2 into the second box.

2.png

So far I have the following code which is simply opening the word document called "Teste1" :

Dim wApp As Word.Application
Dim wDoc As Word.Document
Dim CCtl As Word.ContentControl
Set wApp = CreateObject("word.Application")
wApp.Documents.Open "C:\Users\User\Documents\NovosTestes\Teste1.docx"
wApp.Visible = True

I would really appreciate the help!