I have a form that I am populating with
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[CustomerID] = " & Str(Me![List1])
Me.Bookmark = rs.Bookmark
On this form I would like to populate a subform based on the value from [List2]
Being a novice I would think this could work however I don’t understand enough to do it.
Dim ss As Object
Set ss = subform.Recordset.Clone
ss.FindFirst "[Location ID] = " & Str(Me![List2])
subform.Bookmark = ss.Bookmark
Am I looking in the right area? And can you lend some code?
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[CustomerID] = " & Str(Me![List1])
Me.Bookmark = rs.Bookmark
On this form I would like to populate a subform based on the value from [List2]
Being a novice I would think this could work however I don’t understand enough to do it.
Dim ss As Object
Set ss = subform.Recordset.Clone
ss.FindFirst "[Location ID] = " & Str(Me![List2])
subform.Bookmark = ss.Bookmark
Am I looking in the right area? And can you lend some code?