D
Dave
I know this looks long, but it's not and I'm sure this is
an easy question for some one that knows how.
I'm trying to do a query incorporating three different
tables. Essentially they are all linked by the same
Project Name. One table has details about the proejct,
one table has status updates about the project and one
table has tests done for the project.
I was able to successfully create a query that would
allow me only to display the most recent status message
for that particular project by creating this query:
SELECT [Project Name], Max([Update Status Date]) AS
MaxDaate
FROM [Project Status]
GROUP BY [Project Name];
and then run another query whereby a joined the program
name with the program ID, which gave me the most recent
status update assocatiated with that particular project.
However, now I want to add the test information for each
project.
The problem is unless the project has a test associated
with it, it won't display any info.
Is ther a way to tell it that if has no information in
the test information to still display the project and
status information?
Thanks,
Dave
an easy question for some one that knows how.
I'm trying to do a query incorporating three different
tables. Essentially they are all linked by the same
Project Name. One table has details about the proejct,
one table has status updates about the project and one
table has tests done for the project.
I was able to successfully create a query that would
allow me only to display the most recent status message
for that particular project by creating this query:
SELECT [Project Name], Max([Update Status Date]) AS
MaxDaate
FROM [Project Status]
GROUP BY [Project Name];
and then run another query whereby a joined the program
name with the program ID, which gave me the most recent
status update assocatiated with that particular project.
However, now I want to add the test information for each
project.
The problem is unless the project has a test associated
with it, it won't display any info.
Is ther a way to tell it that if has no information in
the test information to still display the project and
status information?
Thanks,
Dave