On No Data Event

itprog

Registered User.
Local time
Today, 08:02
Joined
Jan 4, 2005
Messages
33
I have the On No Data event of my report show a message box that no data exists for the time period entered. The message box works, but the report still opens showing errors because there is no data. Is there a way for me to stop the report from opening after I display the message box?
 
Before the code from the form opens the report type:

Code:
On Error Resume Next

So the code behind your form should look like

Code:
On Error Resume Next
DoCmd.OpenReport "NameOfReport"

HTH
 
I have multiple reports I would like to use this code in. If I save this code as a module, can the On No Data event call a module? If so, how?
 

Users who are viewing this thread

Back
Top Bottom