I’m trying to open a form where the info displayed is inbetween two dates. I’ve got two text boxes, one asking for the starting date, the other asking for the ending date. Could someone show me the code to be able to do this?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Inbetween dates (2k)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Inbetween dates (2k)
- This topic has 20 replies, 5 voices, and was last updated 21 years, 3 months ago.
AuthorTopicWSStegmite
AskWoody LoungerJanuary 28, 2004 at 3:02 pm #399853Viewing 1 reply threadAuthorReplies-
WSJudyJones
AskWoody LoungerJanuary 28, 2004 at 3:15 pm #775609 -
WSStegmite
AskWoody Lounger -
WSaccdb
AskWoody LoungerJanuary 28, 2004 at 4:35 pm #775669Try the below in the Form_Open event of your subform. Don’t forget to change MyTableName to the table name where your records are stored.
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
Dim dtBeginningDate As Date
Dim dtEndingDate As DateSet db = CurrentDb
dtBeginningDate = CDate(Forms!DateEntryForm!Text0.Value)
dtEndingDate = CDate(Forms!DateEntryForm!Text2.Value)strSQL = “SELECT MyTableName.*”
strSQL = strSQL & ” FROM MyTableName”
strSQL = strSQL & ” WHERE (((MyTableName.DATE) Between #” & dtBeginningDate & “# And #” & dtEndingDate & “#));”Me.RecordSource = strSQL
-
WSaccdb
AskWoody LoungerJanuary 28, 2004 at 4:35 pm #775670Try the below in the Form_Open event of your subform. Don’t forget to change MyTableName to the table name where your records are stored.
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
Dim dtBeginningDate As Date
Dim dtEndingDate As DateSet db = CurrentDb
dtBeginningDate = CDate(Forms!DateEntryForm!Text0.Value)
dtEndingDate = CDate(Forms!DateEntryForm!Text2.Value)strSQL = “SELECT MyTableName.*”
strSQL = strSQL & ” FROM MyTableName”
strSQL = strSQL & ” WHERE (((MyTableName.DATE) Between #” & dtBeginningDate & “# And #” & dtEndingDate & “#));”Me.RecordSource = strSQL
-
WSaccdb
AskWoody LoungerJanuary 28, 2004 at 4:37 pm #775673Correction:
Try the below in the Form_Open event of your subform. Don’t forget to change MyTableName to the table name where your records are stored and the name of your form and the name of your text boxes.
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
Dim dtBeginningDate As Date
Dim dtEndingDate As DateSet db = CurrentDb
dtBeginningDate = CDate(Forms!MyFormName!MyTextBoxName.Value)
dtEndingDate = CDate(Forms! MyFormName!MyTextBoxName.Value)strSQL = “SELECT MyTableName.*”
strSQL = strSQL & ” FROM MyTableName”
strSQL = strSQL & ” WHERE (((MyTableName.DATE) Between #” & dtBeginningDate & “# And #” & dtEndingDate & “#));”Me.RecordSource = strSQL
-
WSStegmite
AskWoody Lounger -
WSStegmite
AskWoody LoungerJanuary 28, 2004 at 5:05 pm #775707 -
WSjohnhutchison
AskWoody LoungerJanuary 28, 2004 at 9:59 pm #775854The problem with this is that you don’t say what field is supposed to be between the dates.
Here is some similar code, copied from a form where it works.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = “[date of Event] Between #” & Format(Me![txtDate1], “mm/dd/yyyy”) & ” # and #” & Format(Me![txtDate2], “mm/dd/yyyy”) & “#”
stDocName = “frmTesting”
DoCmd.OpenForm stDocName, , , stLinkCriteriaI am not sure that you need to wrap the dates in the format function. Here in Australia we do, because we normally use dates in dd/mm/yyyy format.
-
WSjohnhutchison
AskWoody LoungerJanuary 28, 2004 at 9:59 pm #775855The problem with this is that you don’t say what field is supposed to be between the dates.
Here is some similar code, copied from a form where it works.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = “[date of Event] Between #” & Format(Me![txtDate1], “mm/dd/yyyy”) & ” # and #” & Format(Me![txtDate2], “mm/dd/yyyy”) & “#”
stDocName = “frmTesting”
DoCmd.OpenForm stDocName, , , stLinkCriteriaI am not sure that you need to wrap the dates in the format function. Here in Australia we do, because we normally use dates in dd/mm/yyyy format.
-
WSStegmite
AskWoody LoungerJanuary 28, 2004 at 5:05 pm #775708 -
WSaccdb
AskWoody Lounger -
WSaccdb
AskWoody Lounger -
WSaccdb
AskWoody Lounger -
WSaccdb
AskWoody Lounger
-
-
WSStegmite
AskWoody Lounger
-
-
WSaccdb
AskWoody LoungerJanuary 28, 2004 at 4:37 pm #775674Correction:
Try the below in the Form_Open event of your subform. Don’t forget to change MyTableName to the table name where your records are stored and the name of your form and the name of your text boxes.
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
Dim dtBeginningDate As Date
Dim dtEndingDate As DateSet db = CurrentDb
dtBeginningDate = CDate(Forms!MyFormName!MyTextBoxName.Value)
dtEndingDate = CDate(Forms! MyFormName!MyTextBoxName.Value)strSQL = “SELECT MyTableName.*”
strSQL = strSQL & ” FROM MyTableName”
strSQL = strSQL & ” WHERE (((MyTableName.DATE) Between #” & dtBeginningDate & “# And #” & dtEndingDate & “#));”Me.RecordSource = strSQL
-
WScharlotte
AskWoody LoungerJanuary 28, 2004 at 11:33 pm #775887Try this:
DoCmd.OpenForm “Sort”, , , “[Date of Offense] > = ” & CDate(Me.[txtDate1]) & ” And [Date of Offense] <= " & CDate(Me.[txtDate2])
This assumes that [Date of Offense] is, in fact, a date field rather than date-formatted text, and contains a general date. Keep in mind that if you are using any kind of non-US date format on your machine, you'll run into problems comparing dates in what amounts to a SQL string, since SQL requires US date format of month/day/year. If the textboxes on your form are unbound, the values in them will be strings, even if they look like dates, and CDate will convert them to actual dates in the system date format of the machine.
-
WScharlotte
AskWoody LoungerJanuary 28, 2004 at 11:33 pm #775888Try this:
DoCmd.OpenForm “Sort”, , , “[Date of Offense] > = ” & CDate(Me.[txtDate1]) & ” And [Date of Offense] <= " & CDate(Me.[txtDate2])
This assumes that [Date of Offense] is, in fact, a date field rather than date-formatted text, and contains a general date. Keep in mind that if you are using any kind of non-US date format on your machine, you'll run into problems comparing dates in what amounts to a SQL string, since SQL requires US date format of month/day/year. If the textboxes on your form are unbound, the values in them will be strings, even if they look like dates, and CDate will convert them to actual dates in the system date format of the machine.
-
-
WSStegmite
AskWoody Lounger
-
-
WSJudyJones
AskWoody LoungerJanuary 28, 2004 at 3:15 pm #775610
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Where’s the cache today?
by
Up2you2
1 hour, 53 minutes ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
4 hours, 56 minutes ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
5 hours, 16 minutes ago -
Blocking Search (on task bar) from going to web
by
HenryW
9 hours, 57 minutes ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
15 hours, 4 minutes ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
15 hours, 11 minutes ago -
regarding april update and may update
by
heybengbeng
16 hours, 40 minutes ago -
MS Passkey
by
pmruzicka
28 seconds ago -
Can’t make Opera my default browser
by
bmeacham
1 day ago -
*Some settings are managed by your organization
by
rlowe44
11 hours, 3 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
23 hours, 14 minutes ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
1 day, 18 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
2 days, 3 hours ago -
AI slop
by
Susan Bradley
18 hours, 2 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
2 days, 5 hours ago -
Two blank icons
by
CR2
16 hours, 57 minutes ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
2 days, 14 hours ago -
End of 10
by
Alex5723
2 days, 16 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
1 day, 14 hours ago -
test post
by
gtd12345
2 days, 22 hours ago -
Privacy and the Real ID
by
Susan Bradley
2 days, 12 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
15 hours, 17 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
3 days, 3 hours ago -
Upgrading from Win 10
by
WSjcgc50
1 day, 14 hours ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
1 day, 18 hours ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
3 days, 18 hours ago -
The story of Windows Longhorn
by
Cybertooth
3 days, 6 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
3 days, 20 hours ago -
Are manuals extinct?
by
Susan Bradley
21 hours, 9 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
4 days, 5 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.