Hello all,
I am trying to make it so a combo box will only display records of the last 5 days worth of information from the drop down.
Currently I have the drop down using a query that I have creating the results on open using
but im trying to filter threw about 300,000 records so its really slow! Is there a way I could rebuild this feature with VBA to greatly increase the speed??
Thanks for the help :D
I am trying to make it so a combo box will only display records of the last 5 days worth of information from the drop down.
Currently I have the drop down using a query that I have creating the results on open using
Code:
between now() and now() - 5 'date criteria
Thanks for the help :D
Comment