Ken: I only need to list the details and yes, there should be at least one record from each detail.
chelseatech, I'd already done that and it worked. I also have many other reports that include subreports to solve this kind of situation.
But now the client wants me to compile all of those separate reports into a single report. I'd already think about creating one main report and inserting all of the other reports as subreports. Like this:
Main_Report.rpt:
<subreport from Report_1.rpt>
<subreport from Report_2.rpt>
<subreport from Report_3.rpt>
...
...
...
<subreport from Report_n.rpt>
While all reports from Report_1.rpt to Report_n.rpt use subreports. I have created the Main_Report.rpt and inserted Report_1.rpt as subreports. It worked fine, except that the subreports of Report_1.rpt (i.e: the nested subreports) did not show up -- just blank.
Thanks.