or like this:
Main Topics
Browse All TopicsHow can I get this to work so the user can enter an ending date?
Simplified code:
Dim rs1 As DAO.Recordset
Dim strSQL1 As String
strSQL1 = "SELECT Fullpart, qty, date FROM PARTS WHERE Date<= [Enter Ending Date];"
Set rs1 = CurrentDb.OpenRecordset(st
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
It is to say you cannot create a query with a parameter and open that query in code and expect to be asked for the parameter. You have the option of using an input box as per AngelIII's suggestion, or calling a sub or a function in which you pass the endDate as in:
Public Function OpenRS(myDate as String)
Dim db as DAO.Database, rs as DAO.Recordset, mySQL as String
myDate="#" & myDate & "#"
mySQL="SELECT Fullpart, qty, date FROM PARTS WHERE [Date] <= " & MyDate
set rs = db.openrecordset(mySQL,dbO
I believe you need the dbOpenDynaset as you will otherwise generate an error saying it could not find mySQL (expanded as a string).
Business Accounts
Answer for Membership
by: angelIIIPosted on 2008-02-18 at 13:58:47ID: 20923878
here we go:
Select allOpen in new window