E
Emma
Hello,
I have a join which is working great. Unfortunately I would only like the
first record for Loans and Grants. Right now it brings up the first client
with the first loan and grant then the first client with the second loan and
grant etc... I would only like the client to appear once, thus the first loan
and grant only. Is this possible?
Here's the code:
SELECT [Tbl Client Information].*, [Tbl Loans].ID, [Tbl Grant].ID AS [ID_Tbl
Grant], [Tbl Loans].DateofLoanAgreementSigned, [Tbl
Grant].DateofGrantAgreementSigned FROM ([Tbl Client Information] LEFT JOIN
[Tbl Loans] ON [Tbl Client Information].[Client ID] = [Tbl Loans].[Client
ID]) LEFT JOIN [Tbl Grant] ON [Tbl Client Information].[Client ID] = [Tbl
Grant].[Client ID];
Thanks Emma
I have a join which is working great. Unfortunately I would only like the
first record for Loans and Grants. Right now it brings up the first client
with the first loan and grant then the first client with the second loan and
grant etc... I would only like the client to appear once, thus the first loan
and grant only. Is this possible?
Here's the code:
SELECT [Tbl Client Information].*, [Tbl Loans].ID, [Tbl Grant].ID AS [ID_Tbl
Grant], [Tbl Loans].DateofLoanAgreementSigned, [Tbl
Grant].DateofGrantAgreementSigned FROM ([Tbl Client Information] LEFT JOIN
[Tbl Loans] ON [Tbl Client Information].[Client ID] = [Tbl Loans].[Client
ID]) LEFT JOIN [Tbl Grant] ON [Tbl Client Information].[Client ID] = [Tbl
Grant].[Client ID];
Thanks Emma