MajP
Well, I agree with you that using the word "snapshot" is misleading. Because Access applies a special definition to that word. Poor choice of words - I had no intention to mislead. You are right that a report is dynamic.
I see what you are wanting to do, and that would be nice to do.
I'm not aware that you can navigate to that record after the report is opened...but if you are able to identify, through your process, a particular record that will be contained in the report, could you put code, probably in the report's Format event, that highlights that record by shading it or something like that?
To test that, I just put the following code on the Format event for the Detail section of a report...
If Me.FullName = "Babcock, Dale" Then
Me.FullName.ForeColor = vbRed
Else: Me.FullName.ForeColor = vbBlack
End If
That worked. I don't know whether or not this helps your situation.
All the best with your project.
Tom