G
Gcook888
SELECT tblDetail.MachineName, tblDetail.Operator, Max(tblDetail.Date) AS
MaxOfDate, Sum(tblDetail.TDHrs) AS SumOfTDHrs
FROM tblDetail
WHERE (((tblDetail.Date) Between [Forms]![frmReportDialog]![Start] And
[Forms]![frmReportDialog]![End]))
GROUP BY tblDetail.MachineName, tblDetail.Operator;
Its a Stored Query called qryX. When I run it, it returns no records. I know
the WHERE clause is the problem from trying to use it with a CHART wizard I got
runtime error when I tried to preview the chart..
The form frmReportDialog is open w/dates in its [Start] and [End] ctrls.
please help.
MaxOfDate, Sum(tblDetail.TDHrs) AS SumOfTDHrs
FROM tblDetail
WHERE (((tblDetail.Date) Between [Forms]![frmReportDialog]![Start] And
[Forms]![frmReportDialog]![End]))
GROUP BY tblDetail.MachineName, tblDetail.Operator;
Its a Stored Query called qryX. When I run it, it returns no records. I know
the WHERE clause is the problem from trying to use it with a CHART wizard I got
runtime error when I tried to preview the chart..
The form frmReportDialog is open w/dates in its [Start] and [End] ctrls.
please help.