J
jer
Some help please. I am trying to query a range of dates, but because the
date is formatted date time I am using datevalue to query the date part. How
do I structure the criteria to allow the user to input a range of date. I
have attempted the following, but this does not work. Any help / suggestions
would be greatly appreciated
SELECT [Confirmations].Subject, [Confirmations].From,
[Confirmations].Received, DateValue([Received]) AS [Date]
FROM [Confirmations]
WHERE (((DateValue([Received])) Between DateValue([received])=[enter date]
And DateValue([received])=[enter date]));
date is formatted date time I am using datevalue to query the date part. How
do I structure the criteria to allow the user to input a range of date. I
have attempted the following, but this does not work. Any help / suggestions
would be greatly appreciated
SELECT [Confirmations].Subject, [Confirmations].From,
[Confirmations].Received, DateValue([Received]) AS [Date]
FROM [Confirmations]
WHERE (((DateValue([Received])) Between DateValue([received])=[enter date]
And DateValue([received])=[enter date]));