Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
' 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