G
Guest
I have a query set up and I am ending up with 2 records for each date. Here
is the SQL view of the qry. What Am I doing wrong?
SELECT tblForecastReports.FCDate, tblForecastReports.fcrCurLTLLns,
tblForecastReports.fcrPD1LTLLns, tblForecastReports.fcrPD2LTLLns,
[fcrCurLTLLns]+[fcrPD1LTLLns]+[fcrPD2LTLLns] AS [TOTAL LTL Lines],
[qryDeptLTLPrfmPerHour Query].[Avg Of LTLLPH], [TOTAL LTL Lines]/[Avg of
LTLLPH] AS AroxNeedHoursLTL
FROM qryDeptHoursPrfmMonthly, [qryDeptLTLPrfmPerHour Query],
tblForecastReports;
is the SQL view of the qry. What Am I doing wrong?
SELECT tblForecastReports.FCDate, tblForecastReports.fcrCurLTLLns,
tblForecastReports.fcrPD1LTLLns, tblForecastReports.fcrPD2LTLLns,
[fcrCurLTLLns]+[fcrPD1LTLLns]+[fcrPD2LTLLns] AS [TOTAL LTL Lines],
[qryDeptLTLPrfmPerHour Query].[Avg Of LTLLPH], [TOTAL LTL Lines]/[Avg of
LTLLPH] AS AroxNeedHoursLTL
FROM qryDeptHoursPrfmMonthly, [qryDeptLTLPrfmPerHour Query],
tblForecastReports;