Try this... it should be easy for u. Have fun!
Sub Create_Word_Doc()
Dim oWordApp As Word.Application
'Start a new instance of Microsoft Word
Set oWordApp = New Word.Application
With oWordApp
'Create a new document
.Documents.Add
'Create header and footer
.ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Text = "Header Text" & vbCrLf & "Hello World"
.ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Text = "Footer Text"
'Add text to the document
.Selection.TypeText Text:="one"
.Selection.TypeParagraph
.Selection.TypeText Text:="two"
.Selection.TypeParagraph
.Selection.TypeText Text:="three"
'Save the document
.ActiveDocument.SaveAs FileName:="c:\Doc1.doc", _
FileFormat:=wdFormatDocument, LockComments:=False, _
Password:="", AddToRecentFiles:=True, WritePassword _
:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:=False, _
SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
End With
'Quit Word
oWordApp.Quit
End Sub