Yes, use a query for the source of your merge data. This can work from either the Access side or the Word side. From the Word side you would use the Merge Document Wizard, select the DB and query for your source. From the Access side there are several ways to do this. My favorite is to create a Word Template and then create custom properties in the template (one property for each field you wish to merge). Once you've created the properties they will show up in your Fields... list and can be added anywhere in the document. You can then use the following code (original by Helen Fedema, modified by yours truly) to populate each property. This works very well and gives the user a new document each time (in case they want to save it for posterity).
Private Sub cmdMemorandum_Click()
'Written by Helen Feddema 4-22-98
'Last modified 8-2-2000
On Error GoTo ErrorHandler
' Dim appWord As Word.Application ****modified to use the object class instead of application class
Dim appWord As Object
' Dim docs As Word.Documents ****modified to use the object class instead of Word document class
Dim docs As Object
Dim strLetter As String
Dim strTemplateDir As String
Dim prps As Object
Dim strDate As String
Set appWord = GetObject(, "Word.Application"

strDate = CStr(Date)
strTemplateDir = "f:\warpgms\warfiles\"
strLetter = strTemplateDir & "Memorandum.dot"
Set docs = appWord.Documents
docs.Add strLetter
Set prps = appWord.ActiveDocument.CustomDocumentProperties
With prps
.Item("PropertyName1"

.Value = Me.FieldName1
.Item("PropertyName2"

.Value = Me.FieldName2
etc......
End With
With appWord
.Visible = True
.Activate
.Selection.WholeStory
.Selection.Fields.Update
.Selection.MoveDown
'.Selection.MoveDown Unit:=wdLine, Count:=1
End With
ErrorHandlerExit:
Exit Sub
ErrorHandler:
If Err = 429 Then
'Word is not running; open Word with CreateObject
Set appWord = CreateObject("Word.Application"

Resume Next
Else
MsgBox "Error No: " & Err.Number & "; Description: " & Err.Description
Resume ErrorHandlerExit
End If
End Sub
"Advice is a dangerous gift, even from the wise to the wise, for all course may run ill." J.R.R. Tolkien