Please see below. The query is still not working correctly.
SELECT CDate(Format([EnterDate],"Short Date")) AS Expr1, Reminders.EnterUserId
FROM Reminders
GROUP BY CDate(Format([EnterDate],"Short Date")), Reminders.EnterUserId
HAVING (((CDate(Format([EnterDate],"Short Date"))) Between [enter begin date] And [Enter End Date]));
This method does not work. I assume that I am doing something wrong. The query is still pulling date from previous years even though I am asking for 2015 data only. It is also pulling some data that falls outside the date range. This is the first time that happen. For example, I am querying 1/1/2015 to 4/17/2015 and it is pulling some data from 10/22/2014. I assume the date values are still strings???