Access report "Overflow" error on export to HTML (PDF works fine)

can't really help without seeing the data/queries - and not clear what your final report is supposed to look like with 6 subreports.

Your sql would appear to not have enough joins

Would also help if you aliased your queries and not use spaces in table names - makes the sql much easier to read. For example

SELECT * FROM 2024_ORG_ST_Summary_ABCD AS M INNER JOIN Sub_Report_qrySource1 AS R1 ON M.StateName = R1.StateName AND M.TstNum = R1.TstNum
 

Users who are viewing this thread

Back
Top Bottom