Create a new query. Add both tables. Join them on their related field(s).
Add fields from both that you want in the report. Save and close the query.
Create a new report. For a source, point at the query you just created.
--
Regards
Jeff Boyce
www.InformationFutures.net
Microsoft Office/Access MVP
http://mvp.support.microsoft.com/
Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/
"matt" <ma...@discussions.microsoft.com> wrote in message
news:B0D0F42D-C325-42C7...@microsoft.com...
Sub forms are contained in a subform control. Two properties of the subform
control are Link Master Fields and Link Child Fields. Put the name of the
field in the main table that links to the child time in the Link Master
Fields. Put the name of the field in the child table that links the child to
the master in the Link Child Fields.
--
Dave Hargis, Microsoft Access MVP
The use the Where argument of the OpenReport method to specify the record.
It would be the primary key field of the main table.
strWhere = "[ClientID] = " & Me.txtClientID
Docmd.OpenReport "MyReport", , ,strWhere