subreport problem

B

Beginner

I have some reports (subreport)and want to placed them into single report.
How to do if the subreports have no data and want them to return "NIL"
records in subreports. thanks!
 
D

Duane Hookom

I don't understand your question. What do you mean by "NIL"? Do you want a
text box to display "NIL"? If so, you can use and expression like:
=IIf(subreport.Report.HasData, "", "NIL")
 
Top