I am developing a series of reports for maintenance on aircraft and if no maintenance has been performed for a particular aircraft the query will obviously return nothing. However, at the report level I need to display in one of my text fields (discrepancy), "No Discrepancies". If anyone could help, I would appreciate it very much.
This is what I currently have...
Private Sub Report_NoData(Cancel As Integer)
MsgBox "Sorry, there were no records returned.", vbOKOnly + vbInformation
Cancel = True
End Sub
This is what I currently have...
Private Sub Report_NoData(Cancel As Integer)
MsgBox "Sorry, there were no records returned.", vbOKOnly + vbInformation
Cancel = True
End Sub