Adding additional detail sections to a report

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

I am producing a report that contains an addendum that
should only print if certain criteria are met. In order to
do this, I would like to be able to add additional detail
sections to my report so that I can programmatically
disable the entire section and it’s contents from the
report.

Can you please tell me if this is possible? In searches of
the Knowledge base, I have found references to detail_0
and detail_1, but no actual information on how to add the
additional detail sections.

Any help you could offer will be greatly appreciated!

Fred
 
A report can have only one detail section.
If you need more, a subreport may help.

For an addendum, it is probablly a matter of placing the subreport into the
Report Footer section.
 
Fred said:
I am producing a report that contains an addendum that
should only print if certain criteria are met. In order to
do this, I would like to be able to add additional detail
sections to my report so that I can programmatically
disable the entire section and it’s contents from the
report.

Can you please tell me if this is possible? In searches of
the Knowledge base, I have found references to detail_0
and detail_1, but no actual information on how to add the
additional detail sections.

Any help you could offer will be greatly appreciated!

If you create a group with a header/footer and base it on the Primary Key value in
the report's RecordSource you should get a group that repeats as many times as the
detail section (essentially the same thing).
 
Back
Top