Hi,
I have a form based on a query.
The form’s recordset is filtered by setting its Filter property through some code, which works fine.
What is the fastest way to find (and select) a record with a specific Id within the filtered recordset?
![]() |
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 |
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Access VBA select a record on a form (2000, 2003)
You can use code like this:
Dim lngID As Long
Dim rst As DAO.Recordset
lngID = …
Set rst = Me.RecordsetClone
rst.FindFirst “ID=” & lngID
If rst.NoMatch Then
MsgBox “ID ” & lngID & ” not found.”, vbExclamation
Else
Me.Bookmark = rst.Bookmark
End If
Set rst = Nothing
The code requires that you have set a reference to the Microsoft DAO 3.6 Object Library.
I have assumed that the field you’re looking for is named ID and that it is a number field. If it is a text field, use
rst.FindFirst “ID=” & Chr(34) & lngID & Chr(34)
Hi Hans, what’s the purpose of setting Me.SelTop = Me.RecordsetClone.RecordCount and then Me.SelTop = n?
I’ve tried it on an unfiltered continuous form where the current record on opening is 24 rows from the bottom and Me.RecordsetClone.RecordCount and Me.CurrentRecord give me the same number.
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.
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.
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.