You can filter the recordset so that it has a single record and base the report on that. Try this:
Code:
' oRS is your original recordset, nRS will be a copy
' The current record in oRS will be reported:
Dim nRS as RecordSet
Dim b as Variant
b = oRS.Bookmark
Set nRS = oRS.Clone
nRS.Filter = Array(b)
' Now you can run your report with the nRS recordset
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.