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 LoungerWSJudyJones
AskWoody LoungerJanuary 28, 2004 at 3:15 pm #775610Viewing 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
-
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
3 hours, 5 minutes ago -
False error message from eMClient
by
WSSebastian42
7 hours, 44 minutes ago -
Awoke to a rebooted Mac (crashed?)
by
rebop2020
6 hours ago -
Office 2021 Perpetual for Mac
by
rebop2020
7 hours, 13 minutes ago -
AutoSave is for Microsoft, not for you
by
Will Fastie
1 hour, 49 minutes ago -
Difface : Reconstruction of 3D Human Facial Images from DNA Sequence
by
Alex5723
10 hours, 44 minutes ago -
Seven things we learned from WhatsApp vs. NSO Group spyware lawsuit
by
Alex5723
11 hours, 6 minutes ago -
Outdated Laptop
by
jdamkeene
16 hours, 10 minutes ago -
Updating Keepass2Android
by
CBFPD-Chief115
21 hours, 35 minutes ago -
Another big Microsoft layoff
by
Charlie
21 hours, 15 minutes ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
40 minutes ago -
May 2025 updates are out
by
Susan Bradley
1 hour, 37 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
1 day, 3 hours ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
1 day, 3 hours ago -
Drivers suggested via Windows Update
by
Tex265
1 day, 3 hours ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
1 day ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
1 day, 10 hours ago -
Apple releases 18.5
by
Susan Bradley
1 day, 4 hours ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
1 day, 11 hours ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
1 day, 12 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
19 hours, 30 minutes ago -
No HP software folders
by
fpefpe
1 day, 19 hours ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
17 hours, 15 minutes ago -
Stay connected anywhere
by
Peter Deegan
2 days, 1 hour ago -
Copilot, under the table
by
Will Fastie
3 hours, 44 minutes ago -
The Windows experience
by
Will Fastie
2 days, 7 hours ago -
A tale of two operating systems
by
Susan Bradley
11 hours, 46 minutes ago -
Microsoft : Resolving Blue Screen errors in Windows
by
Alex5723
2 days, 12 hours ago -
Where’s the cache today?
by
Up2you2
3 days, 4 hours ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
2 days, 20 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.