Can someone tell me how to refer to the Recordset Clone to further filter the results displayed in the subform? The user selects the [ID NO] from the cbxFind combo box.
Public Sub cbxFind_AfterUpdate()
Dim rstOrig As Recordset
Set rstOrig=Me.RecordsetClone
rstOrig.FindFirst " [ID NO]='" & Me![cbxFind] & "'"
If Not rstOrig.NoMatch Then Me.Bookmark=rstOrig.Bookmark
End Sub
After the above is executed, I want the user to enter a date and click a command button that will further filter the above down to the date.
Help!
Public Sub cbxFind_AfterUpdate()
Dim rstOrig As Recordset
Set rstOrig=Me.RecordsetClone
rstOrig.FindFirst " [ID NO]='" & Me![cbxFind] & "'"
If Not rstOrig.NoMatch Then Me.Bookmark=rstOrig.Bookmark
End Sub
After the above is executed, I want the user to enter a date and click a command button that will further filter the above down to the date.
Help!