I see. I have a running total for each record now .... could I do something
to just capture the last Total?. Sorry Duane I am new with access, hope I am
explaining my self.
> You can't total a calculated "control" across report sections. You can only
> total/sum values/expressions from your report's record source.
[quoted text clipped - 15 lines]
> > > > I would like to calculate the total amount earned for the group,
> > > > thanks
I generally try to calculate totals without using running sums. For instance
if a control source in the detail section is something like:
Name: txtNetPrice
Control Source: =[Quantity] * [UnitPrice] * IIf([Quantity]>=100,0.95,1)
I would add a text box to a footer with a control source of:
Control Source: =Sum([Quantity] * [UnitPrice] * IIf([Quantity]>=100,0.95,1))
You might get the same value if you set the Running Sum on
Name: txtNetPrice
Control Source: =[Quantity] * [UnitPrice] * IIf([Quantity]>=100,0.95,1)
Running Sum: Over All
and control source in the footer to:
Control Source: =txtNetPrice

Signature
Duane Hookom
Microsoft Access MVP
> I see. I have a running total for each record now .... could I do something
> to just capture the last Total?. Sorry Duane I am new with access, hope I am
[quoted text clipped - 19 lines]
> > > > > I would like to calculate the total amount earned for the group,
> > > > > thanks
visidro - 31 Aug 2007 20:58 GMT
that's great Duane, that works. thank you very much
Victor
> I generally try to calculate totals without using running sums. For instance
> if a control source in the detail section is something like:
[quoted text clipped - 35 lines]
> > > > > > I would like to calculate the total amount earned for the group,
> > > > > > thanks