D
DS
I'm using this code on a listbox to find records on the same form. It
works fine except I need to base this on 2 criteria not one.
Me.RecordsetClone.FindFirst "[LineId] = " & Me![List52] & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
I tried this but it didn't work.
Me.RecordsetClone.FindFirst "[LineId],[ItemID] = " & Me![List52] & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
Any help Appreciated.
Thanks
DS
works fine except I need to base this on 2 criteria not one.
Me.RecordsetClone.FindFirst "[LineId] = " & Me![List52] & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
I tried this but it didn't work.
Me.RecordsetClone.FindFirst "[LineId],[ItemID] = " & Me![List52] & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
Any help Appreciated.
Thanks
DS