Here is the Code for the Command Button ONCLICK, and from my Module. Note that I have changed some names from FAQ703-760. Thanks!
Private Sub Command206_Click()
Dim db As DAO.Database
Dim recSubmittal As DAO.Recordset
Dim recSubmittal2 As DAO.Recordset
Dim strSQL As String
Dim strSQL2 As String
' Capture the field whose value will narrow your recordset down
strECNNum = Me.[ECN #]
strSQL = "SELECT * FROM qryTestWord WHERE [ECN NUMBER]= '" & strECNNum & "';"
Set db = CurrentDb()
Set recSubmittal = db.OpenRecordset(strSQL)
strSQL2 = "SELECT * FROM qryTestWordSub WHERE [ECN NUMBER]= '" & strECNNum & "';"
Set db = CurrentDb()
Set recSubmittal2 = db.OpenRecordset(strSQL2)
' This CreateSubmittal sub is created in the module
CreateSubmittal recSubmittal, recSubmittal2
End Sub
Option Compare Database 'Use database order for string comparisons
Option Explicit
' location of the template for ECN BOARD REPORT Email -
Public Const m_strDIR As String = "R:\Engineering\Databases\Engineering Database\"
Public Const m_strTEMPLATE As String = "ECNBoard.dot"
' sets up objects for use and Public variables to be shared in database -
Private m_objWord As Word.Application
Private m_objDoc As Word.Document
Public strECNNum As Variant
Public Sub CreateSubmittal(recSubmit As DAO.Recordset, recSubmit2 As DAO.Recordset)
Set m_objWord = New Word.Application
Set m_objDoc = m_objWord.Documents.Add(m_strDIR & m_strTEMPLATE)
m_objWord.Visible = True
InsertTextAtBookmark "ECNNo", recSubmit("ECN NUMBER"

InsertTextAtBookmark "PART", recSubmit("PART NUMBER"

InsertTextAtBookmark "DATE", recSubmit("RECEIVED DATE"

InsertTextAtBookmark "REQBY", recSubmit("REQUESTOR"

InsertTextAtBookmark "Engineer", recSubmit("ENGINEER"

InsertTextAtBookmark "TYPE", recSubmit("ECN TYPE"

InsertTextAtBookmark "Desc", recSubmit("DESCRIPTION"

InsertTextAtBookmark "Reason", recSubmit("REASON"

InsertTextAtBookmark "Actual", recSubmit("ACTUAL CHANGE"
'Generate the table data
'InsertSummaryTable recSubmit2
Set m_objDoc = Nothing
Set m_objWord = Nothing
End Sub
Private Sub InsertTextAtBookmark(strBkmk As String, varText As Variant)
' This finds the bookmarks in the Word template to place the data.
m_objDoc.Bookmarks(strBkmk).Select
m_objWord.Selection.Text = varText & ""
End Sub
Private Sub InsertSummaryTable(recR As DAO.Recordset)
' This pulls in the data for a table then highlights the data
' and creates a table in the Word document at a bookmark location
' for each field you want in the column of the table, have tabs
' surround it. Items in quotes are field names from the query/recordset
' If you need to have a blank column, just place vbTab in twice
On Error GoTo No_Record_Err
Dim strTable As String
Dim objTable As Word.Table
recR.MoveFirst
strTable = ""
While Not recR.EOF
strTable = strTable & vbTab & recR("discontinuedpart"

& vbTab & vbTab & recR("5x5No"

& vbCr
recR.MoveNext
Wend
InsertTextAtBookmark "DiscPart", strTable
Set objTable = m_objWord.Selection.ConvertToTable(Separator:=vbTab)
objTable.Select
objTable.Columns(1).Width = InchesToPoints(1.51)
objTable.Columns(2).Width = InchesToPoints(2.56)
objTable.Columns(3).Width = InchesToPoints(1.44)
objTable.Columns(4).Width = InchesToPoints(2.14)
Set objTable = Nothing
No_Record_Err:
Exit Sub
End Sub