I am using the following query to select qualifying records:
SELECT tblOrder.OrderNum, tblOrder.CloseTime, tblOrder.BusinessDate
FROM tblOrder
WHERE (((tblOrder.CloseTime) Between #2/11/04 4:01:00 am# And #2/12/04 4:00:00 am#));
Since my users are not very adept at writing queries, I want them to run the existing query. I need to have it prompt them for the date but leave the times as they are. I know how to use the [enter date] format to prompt for an input, but haven't figured out the proper syntax so my user enters only the date.
Am I going about this wrong...maybe use a macro instead???Any help would be appreciated.
SELECT tblOrder.OrderNum, tblOrder.CloseTime, tblOrder.BusinessDate
FROM tblOrder
WHERE (((tblOrder.CloseTime) Between #2/11/04 4:01:00 am# And #2/12/04 4:00:00 am#));
Since my users are not very adept at writing queries, I want them to run the existing query. I need to have it prompt them for the date but leave the times as they are. I know how to use the [enter date] format to prompt for an input, but haven't figured out the proper syntax so my user enters only the date.
Am I going about this wrong...maybe use a macro instead???Any help would be appreciated.