G
Guest
I have three subreports within one REPORT.
In the event that at least one of the three subreports will contain no data, the REPORT should still print. For example, sub1 and sub2 have data, but sub3 doesn't. I'd like to insert a "NoData" event on sub3 to call another report which simply contains a textbox stating "There are no training events at this time" (exact capability will exist for each sub).
In the event that no data exists for all three sub reports, a report will still print, with three textboxes stating "There are no ... events at this time".
QUESTION:
Is it as simple as ...
DoCmd.OpenReport "NoDataReport1", acViewPrint,
..... where there are three "NoDataReports".
In the event that at least one of the three subreports will contain no data, the REPORT should still print. For example, sub1 and sub2 have data, but sub3 doesn't. I'd like to insert a "NoData" event on sub3 to call another report which simply contains a textbox stating "There are no training events at this time" (exact capability will exist for each sub).
In the event that no data exists for all three sub reports, a report will still print, with three textboxes stating "There are no ... events at this time".
QUESTION:
Is it as simple as ...
DoCmd.OpenReport "NoDataReport1", acViewPrint,
..... where there are three "NoDataReports".