You would use only a single subreport. The subreport would have a group
heading and so it would automatically break after each change in the group
code.
> Thanks for your answer.
>
[quoted text clipped - 41 lines]
>> >
>> > Arnon
After doing it I get detail of accounts then the sub total of the account
category. So let's say salaries accounts+Sub-total salaries, then Direct cost
accounts+sub-total direct cost. What I would like to have is after the
sub-total for direct cost add a line that add the two sub-totals together. Is
that possible to do using just onw report, if yes then how. Because what I
have done using the example above is creating two sub-reports, one for
salaries and the other for direct cost, pasted both into the main report and
then added the line which adds the two together. I cannot seem to understand
how to add those lines using just one report.
Thanks,
Arnon
> You would use only a single subreport. The subreport would have a group
> heading and so it would automatically break after each change in the group
[quoted text clipped - 45 lines]
> >> >
> >> > Arnon
Pat Hartman(MVP) - 30 Nov 2005 04:02 GMT
Put controls in the report footers of each subreport that sum the amounts.
Then add a control to the main report that references the subreport.
=Nz(Subreport1.SumField,0) + Nz(Subreport2.SumField,0)
> After doing it I get detail of accounts then the sub total of the account
> category. So let's say salaries accounts+Sub-total salaries, then Direct
[quoted text clipped - 76 lines]
>> >> >
>> >> > Arnon
Arnon - 30 Nov 2005 18:58 GMT
So, based on your answer, there is no way of doing this using just one
subreport instead of ten, correct?
Arnon
> Put controls in the report footers of each subreport that sum the amounts.
> Then add a control to the main report that references the subreport.
[quoted text clipped - 80 lines]
> >> >> >
> >> >> > Arnon