Okay I tried that, but I went through and I tried to group by Avg, Sum, Count, but each column had its own value and it was the same all the way down. Here is what I have:
SELECT tblReportDate.ReportDay, Count(qryAgeClosed.Closed) AS CountOfClosed, Count(qryAgeOpen.Open) AS CountOfOpen, Count(qryAgeOpened.Opened) AS CountOfOpened, Count(qryAgeOverdue.Overdue) AS CountOfOverdue
FROM qryAgeClosed, qryAgeOpen, qryAgeOpened, qryAgeOverdue, tblReportDate
GROUP BY tblReportDate.ReportDay;