G
Gcook888
I have primary table with 2 fields that make up primary key and also the
foreign key into a detail table. It is a 1 to many relationship.
So instead of a straight inner join in which the primary record is repeated as
many times as there are detail records I want the report output to go like:
PrimaryRec1 Detail1 for PrimaryRec1
Detail2 for PrimaryRec1
:
:
DetailN for PrimaryRec1
PrimaryRec2 Detail1 for PrimaryRec2
Detail2 for PrimaryRec2
:
:
DetailM for PrimaryRec2
:
:
If I GROUP BY on my primary records it seems I can only get the min or max (or
something, just 1) detail.
My RecordSource is the INNER JOIN of the 2 tables.
Thanks a lot if this is clear and you can help.
foreign key into a detail table. It is a 1 to many relationship.
So instead of a straight inner join in which the primary record is repeated as
many times as there are detail records I want the report output to go like:
PrimaryRec1 Detail1 for PrimaryRec1
Detail2 for PrimaryRec1
:
:
DetailN for PrimaryRec1
PrimaryRec2 Detail1 for PrimaryRec2
Detail2 for PrimaryRec2
:
:
DetailM for PrimaryRec2
:
:
If I GROUP BY on my primary records it seems I can only get the min or max (or
something, just 1) detail.
My RecordSource is the INNER JOIN of the 2 tables.
Thanks a lot if this is clear and you can help.