I'm creating a user input screen where the user can input a date range as a criteria of a report. The following is what I'm using. It partially works.
strCriteria = "[dtDateRun] <= #" & CDate(Me.txtDateToUse) & "#"
It gets all the records where it's less than, but not the equals to.
Any thoughts?
strCriteria = "[dtDateRun] <= #" & CDate(Me.txtDateToUse) & "#"
It gets all the records where it's less than, but not the equals to.
Any thoughts?