I am using Access 2010 and for the life of me can't see why I am getting this error message. I am using the following to filter a subform from my main form:
Could I please ask for another pair of eyes to look at this for me and see where I am going wrong? Thank you.
Code:
Dim rs As DAO.Recordset
Dim frm As Form
Set frm = subfrmCharityDetail.Form
Set rs = frm.RecordsetClone
rs.FindFirst "[CharityName] = '" & Me.CharityName & "'"
If Not rs.NoMatch Then frm.Bookmark = rs.Bookmark
rs.Close
Set rs = Nothing
Could I please ask for another pair of eyes to look at this for me and see where I am going wrong? Thank you.