S
Steven
I am having trouble making this work. I am trying to do a find in a subform.
Dim rs As DAO.Recordset
If Not IsNull(Me.Command33) Then
Set rs = Forms![fAddGroupCat]![fAddGroupCatSub2].[Form].RecordsetClone
rs.FindFirst "[Descr2] = """ & Me.Command33 & """"
If rs.NoMatch Then
MsgBox "Not found"
Else
Me.Bookmark = rs.Bookmark
End If
Set rs = Nothing
End If
Thank you,
Steven
Also: How can you tell it to start at the last record and find looking back
up?
Thank you,
Steven
Dim rs As DAO.Recordset
If Not IsNull(Me.Command33) Then
Set rs = Forms![fAddGroupCat]![fAddGroupCatSub2].[Form].RecordsetClone
rs.FindFirst "[Descr2] = """ & Me.Command33 & """"
If rs.NoMatch Then
MsgBox "Not found"
Else
Me.Bookmark = rs.Bookmark
End If
Set rs = Nothing
End If
Thank you,
Steven
Also: How can you tell it to start at the last record and find looking back
up?
Thank you,
Steven