The query below is droping many statements, It only shows statements for 6/30/2006, which is the latest statement out of all movies.
I want to show the movie and the latest statement for that particular movie. This is the query I have:
SELECT A.*
FROM [QryReportBase_CalculatedAll Step 4] AS A
WHERE (((A.StatementDate)=(Select Max([StatementDate]) from [QryReportBase_CalculatedAll Step 4] as B Where B.FilmID=A.FilmID)))
ORDER BY A.Film;
I want to show the movie and the latest statement for that particular movie. This is the query I have:
SELECT A.*
FROM [QryReportBase_CalculatedAll Step 4] AS A
WHERE (((A.StatementDate)=(Select Max([StatementDate]) from [QryReportBase_CalculatedAll Step 4] as B Where B.FilmID=A.FilmID)))
ORDER BY A.Film;