Hi everyone,
I have a database with project information in one table, and a series of dates for each project in another. I want to create a report showing the project information for a date, but only if that date is the last date in the date subtable. In a pseudocode query, it would be something like
Display [Project Data] where last([Dates].[Release Date]) = "some date"
both tables have a project id field that link them.
Thanks,
Chris
I have a database with project information in one table, and a series of dates for each project in another. I want to create a report showing the project information for a date, but only if that date is the last date in the date subtable. In a pseudocode query, it would be something like
Display [Project Data] where last([Dates].[Release Date]) = "some date"
both tables have a project id field that link them.
Thanks,
Chris
Comment