I have two combobox in my Access form named CombDate and CombDat1. Now I want to show records between two dates. How can I do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using VBA, you can retrieve the values from the two date combo boxes and store them in date1 and date2, then you can open a recordset using VBA and DAO, with the following SQL:
More details would help clarify the solution, but that’s the basic process.