Yes that it. I actually figured it out using the following code
Private Sub Doneby_Click()
With Me.Parent.RecordsetClone
'Assuming the search value is a string
.FindFirst "[Doneby] = '" & Me![Doneby] & "'"
If Not .NoMatch Then
Me.Parent.Bookmark = .Bookmark
End If
End With
End Sub
Quote:
quote:Originally posted by kindler
Just for clarification, your example is something like a work order containing a field that references the record of the work order documenting any additional work done?
|
Clayton