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, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
Login issues with Windows Hello
by
CWBillow
6 minutes ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
3 hours, 40 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
8 hours, 33 minutes ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
8 hours, 39 minutes ago -
Google AI is now hallucinating idioms
by
Alex5723
9 hours, 11 minutes ago -
april update
by
69800
5 hours, 10 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
10 hours, 5 minutes ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
10 hours, 18 minutes ago -
WuMgr not loading?
by
LHiggins
10 hours, 54 minutes ago -
Word crashes when accessing Help
by
CWBillow
2 hours, 21 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
9 hours, 56 minutes ago -
Blank Inetpub folder
by
Susan Bradley
7 hours, 21 minutes ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
20 hours, 28 minutes ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
6 hours, 53 minutes ago -
Wait command?
by
CWBillow
13 hours, 44 minutes ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
1 day, 3 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
1 day, 9 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
1 day, 18 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
1 day, 19 hours ago -
How to use Skype after May?
by
Joann
4 hours, 15 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
1 day, 14 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
2 days, 9 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
2 days, 9 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
8 hours, 54 minutes ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
15 hours, 6 minutes ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
2 days, 21 hours ago -
Windows 11 Insider Preview build 26200.5562 released to DEV
by
joep517
3 days, 1 hour ago -
Windows 11 Insider Preview build 26120.3872 (24H2) released to BETA
by
joep517
3 days, 1 hour ago -
Unable to eject external hard drives
by
Robertos42
1 day, 11 hours ago -
Saying goodbye to not-so-great technology
by
Susan Bradley
23 hours, 14 minutes 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.