Here's my SQL :
SELECT DISTINCTROW qryResolution.TrackingNo, qryResolution.CompanyName,
qryResolution.CustomerNo, qryResolution.TempName, qryResolution.JobOrder,
qryResolution.[WE-Date], qryResolution.AssignedDate, qryResolution.AssignedTo,
qryResolution.Reportedby, qryResolution.ReportedDate, qryResolution.WorkFlow,
qryResolution.Status, qryResolution.[Issue-ActionNotes], tblParm.FromDate,
tblParm.ToDate, tblParm.AssignTo, qryResolution.IssueType
FROM qryResolution, tblParm
WHERE (((qryResolution.JobOrder) Is Not Null) AND ((qryResolution.
AssignedDate) Between [FromDate] And [ToDate]) AND ((qryResolution.AssignedTo)
=[Forms]![frmReportPanel]![AssignTo]));
When I pull up the report the "assignedDate" does match the report panel form
. When I change the date on the reportpanel, the report dates (fromdate and
todate) does not change.
From the report panel, what I want to do is have the User pick from and to
dates, assignedto and/or companyname and get a report for this criteria. If
they do not chose any parameters, then the report should show everything.
Thanks,
Kevin W.
OK, can you copy and post the SQL of your query?
[quoted text clipped - 12 lines]