Group on results of calculated value

  • Thread starter Thread starter Terry
  • Start date Start date
T

Terry

My recordsource returns currency amounts per client per project. In the
report I show the amounts per project then show the sum of the amounts per
client in the client group footer.

How would I group these summed amounts in descending order in the report?

regards

Terry
 
Create a second summing query with the projectID and sum
on amount to ProjectTotal, and a third for the ClientID
and sum on amount to Client Total.
Now merge the three queries by clientID and ProjectID and
include the ClientTotal and ProjectTotal.
Now you can do whatever sorting and grouping you wish.
Hope this helps
Fons
 
Thanks Fons,
All done OK.
Regards

Fons Ponsioen said:
Create a second summing query with the projectID and sum
on amount to ProjectTotal, and a third for the ClientID
and sum on amount to Client Total.
Now merge the three queries by clientID and ProjectID and
include the ClientTotal and ProjectTotal.
Now you can do whatever sorting and grouping you wish.
Hope this helps
Fons
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top