something like below is what you are going to want to go with. This way you can change who the report is consistently.. Does your report have their name on it or their ID number?
Code:
'to open it based on their ID Number
DoCmd.OpenReport "REPORT NAME", AcViewReport, , "[ID]=" & (idnumber) & ""
'to open it based on their NAME
DoCmd.OpenReport "REPORT NAME", AcViewReport, , "[Name]='" & THEIRNAME & "'"
To select which person you want a report on, I suggest a combobox of some sort to pick from in a separate form.
Zook