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
-
Dona Col: Catering Personalizado y Sofisticado para Eventos Unicos en Madrid (Awaiting moderation)
by
elissagallegos1
1 hour, 3 minutes ago -
Trying to backup Win 10 computer to iCloud
by
SheltieMom
3 hours, 27 minutes ago -
Windows 11 Insider Preview build 26200.5570 released to DEV
by
joep517
17 hours, 13 minutes ago -
Windows 11 Insider Preview build 26120.3941 (24H2) released to BETA
by
joep517
19 hours ago -
Windows 11 Insider Preview Build 22635.5305 (23H2) released to BETA
by
joep517
19 hours, 2 minutes ago -
No April cumulative update for Win 11 23H2?
by
Peobody
21 hours, 20 minutes ago -
AugLoop.All (TEST Augmentation Loop MSIT)
by
LarryK
19 hours, 33 minutes ago -
Boot Sequence for Dell Optiplex 7070 Tower
by
Serge Carniol
1 day, 10 hours ago -
OTT Upgrade Windows 11 to 24H2 on Unsupported Hardware
by
bbearren
1 day, 14 hours ago -
Inetpub can be tricked
by
Susan Bradley
1 day, 15 hours ago -
How merge Outlook 2016 .pst file w/into newly created Outlook 2024 install .pst?
by
Tex265
8 hours, 5 minutes ago -
FBI 2024 Internet Crime Report
by
Alex5723
1 day, 17 hours ago -
Perplexity CEO says its browser will track everything users do online
by
Alex5723
1 day, 5 hours ago -
Login issues with Windows Hello
by
CWBillow
2 days, 5 hours ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
1 day, 16 hours ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
2 days, 16 hours ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
2 days, 16 hours ago -
Google AI is now hallucinating idioms
by
Alex5723
2 days, 17 hours ago -
april update
by
69800
21 hours, 33 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
2 days, 18 hours ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
2 days, 18 hours ago -
WuMgr not loading?
by
LHiggins
1 day, 14 hours ago -
Word crashes when accessing Help
by
CWBillow
1 hour, 2 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
2 days, 18 hours ago -
Blank Inetpub folder
by
Susan Bradley
2 days, 15 hours ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
3 days, 4 hours ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
2 days, 14 hours ago -
Wait command?
by
CWBillow
2 days, 21 hours ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
3 days, 11 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
3 days, 17 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.