I did look at your post and it was helpful. I was simply trying to better explain what I am trying to do in hopes that maybe someone on here has done something more similar to my needs. I am not wanting someone to do this for me, but I do need help. I altered some of your code but I'm not sure if it is right. Here it is: I get a "user-defined type not defined error on this line: Dim objWord As Word.Application
Private Sub Command215_Click()
'Declare the follwing
Dim objWord As Word.Application
'Set word as an application and make it invisible
Set objWord = CreateObject("Word.Application")
objWord.Visible = False 'True is visible
'path and name of the template your are using.
objWord.Documents.Add ("C:\Documents and Settings\asr0245\My Documents\Grain Bids\bids form dec.doc")
'This is for the bookmark that you created in the template
objWord.ActiveDocument.Bookmarks("M_11cornc").Select
'This is the field in access that contains the data that has to be entered at the
'bookmark
objWord.Selection.Text = Forms![Form_jan-feb daily]![11cornc]
'Word (or the document that you created with the template, will now open)
objWord.Visible = True
Set objWord = Nothing
End Sub