Forum Discussion
Libin7963
Nov 10, 2023Copper Contributor
Access report repeating to multiple pages
I have put together a report in access and it is a summary of count from the query result but the table is repeating 100s of pages as you can see in the picture. Can anyone please let me know how to...
George_Hepworth
Nov 10, 2023Silver Contributor
There seems to be some sort of glitching in the forum software. Originally I thought I saw the entire SQL, but now only part of it is in your post.
Libin7963
Nov 10, 2023Copper Contributor
SELECT TableNameA.Reference, TableNameA.Receiveddate, TableNameA.DATEAPVAL, TableNameA.Datedecision received, TableNameA.DTYPNUMBCO, DateDiff("ww", [DATEAPVAL], [Datedecision received]) AS TATS
FROM TableNameA
GROUP BY TableNameA.Reference, TableNameA.Receiveddate, TableNameA.DATEAPVAL, TableNameA.Datedecision received, TableNameA.DTYPNUMBCO
HAVING (((TableNameA.Receiveddate) > #1/1/2020#));
FROM TableNameA
GROUP BY TableNameA.Reference, TableNameA.Receiveddate, TableNameA.DATEAPVAL, TableNameA.Datedecision received, TableNameA.DTYPNUMBCO
HAVING (((TableNameA.Receiveddate) > #1/1/2020#));
- XPS35Nov 10, 2023Iron Contributor
Libin7963 I don't think this is the full story. This query won't produce the output presented in your first post. Please explain how the output is generated. Or post a copy of your database.
- Libin7963Nov 10, 2023Copper ContributorTATS is a column with Expression to find the date diff. between date decision received and receiveddate