K
Karen
I have a main table with the values for a Case so we'll call it the Case table.
For every Case there can be multiple Journal entries so we'll call it the Journal table.
The Journal table stores the primary key of the Case as a foreign key.
I want a query that pulls all info from the Case table and all of the Journal entries for that Case.
What I keep getting is a query that lists the Case data for each journal entry so the Case data is duplicated every time.
This can't be as hard as I'm finding it to be, I've tried inner joins and group by (which really doesn't work)
I want to build this as a SQL query in VBA.
For every Case there can be multiple Journal entries so we'll call it the Journal table.
The Journal table stores the primary key of the Case as a foreign key.
I want a query that pulls all info from the Case table and all of the Journal entries for that Case.
What I keep getting is a query that lists the Case data for each journal entry so the Case data is duplicated every time.
This can't be as hard as I'm finding it to be, I've tried inner joins and group by (which really doesn't work)
I want to build this as a SQL query in VBA.