R riverphoenix New member Local time Today, 01:45 Joined Aug 6, 2021 Messages 8 Aug 9, 2021 #21 Ok, no worries! I appreciate the help! Thanks
pbaldy Wino Moderator Staff member Local time Yesterday, 22:45 Joined Aug 30, 2003 Messages 36,272 Aug 9, 2021 #22 Actually there is a workaround. You can leave what you have as it is and requery the report in its On Activate event. The code would look like: Code: Private Sub Report_Activate() Me.Requery End Sub That will make the report rerun its source query when it gets focus after you've gone to the main menu.
Actually there is a workaround. You can leave what you have as it is and requery the report in its On Activate event. The code would look like: Code: Private Sub Report_Activate() Me.Requery End Sub That will make the report rerun its source query when it gets focus after you've gone to the main menu.