Which table has the date field, and how are you passing this? Are you using a parameter entry in the Criteria line of the date field like:
Between #[Enter a Start Date:]# And #[Enter an End Date:]#
Or are you using some combo boxes on a form? With combos you can either do this in the Criteria line of the Date field:
Between #[Forms]![frmMyForm].[cboStartDate]# And #[Forms]![frmMyForm].[cboEndDate]#
Or you can pass it in code like:
Dim dtStart As Date
Dim dtEnd As Date
Dim sLink As String
dtStart = Me.cboStartdate
dtEnd = Me.cboEndDate
sLink = "[DateField] Between #" & dtStart & "# And #" & dtEnd & "#"
DoCmd.OpenReport sDocName, acPreview, , sLink
Did any of that help?
mmcdonal
Look it up at:
http://wrox.books24x7.com