SELECT Client.[PFS SW], Client.[Client Last Name], Client.[Client First
Name], Client.Siblings, Client.[County SW], Client.[Client DOI],
Client.[Client DOB], Client.[Foster Home], [Foster Home].[Foster Mother],
[Foster Home].[Foster Father], [Foster Home].[Foster Home] & ", " & [Foster
Mother] & " & "+[Foster Father] & " " & [FH Address] & ", " &
[FH City] & ", " & [FH State] & ", " & [FH Zip] & " " & [FH Phone] AS
FosterHome, Client.Terminated
FROM ((Client INNER JOIN [PFS SW] ON Client.[PFS SW] = [PFS SW].[PFS SW])
INNER JOIN [Foster Home] ON Client.[Foster Home] = [Foster Home].[Foster
Home]) INNER JOIN CountySW ON Client.[County SW] = CountySW.[County SW]
WHERE (((Client.[PFS SW])="Edith McCormick") AND ((Client.Terminated)=No));
John Spencer said:
post the sql of your query. View: SQL from the menu and then copy and
paste.
Without seeing your query, I would guess that you have two tables
SocialWorkers
Clients (children)
and that you have put them both into a query, but have not set up a join
between the two tables - for instance from SocialWorker.ID to
Clients.ChildSocialWorkerID
If you don't set up a join on the tables (drag from one field to the
corresponding field in the other table) then you will get each social worker
associated with every child.
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..