subreport problem

  • Thread starter Thread starter Beginner
  • Start date Start date
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!
 
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")
 
Back
Top