Hi,
I currently have a queries that runs quite nicely and quickly when i enter the between dates within # tags and runs in approx 2 seconds which is exactly the functionality i need.
Works in 2 Seconds:
Code:
Between #12/09/2012# and #13/09/2012#
However, i need the versatility of users to be able to change and select the dates without having to change the hard code so i refered to using Parameters. Nothing fancy just a popup box asking for a value (will add it to form values once working)
The same query, the only thing changed is the between dates and it takes over 60 seconds as i had to increase the default ODBC timeout.
Code:
Between [Date To Start] and [Date To End]
i have even tried:
Code:
Between DateValue([Date To Start]) and DateValue([Date To End])
Can anyone assist with a quicker way to add this versatility without having to take so long its part of a monitor and 60 seconds of the Access app hanging just cannot happen as i will have to manually update the date everyday?
Regards,
DlrMngr