Query

W

walters

I have a query for orders shipped by date. Is there a formula to use to
total by month when running a report for the year. I want to report to show
total quanity for each month. Thnaks
 
J

John W. Vinson

I have a query for orders shipped by date. Is there a formula to use to
total by month when running a report for the year. I want to report to show
total quanity for each month. Thnaks

Sure. Add a field to your Query by typing

ShipMonth: Month([Shipdate])

using whatever fieldname you use for the date. You can either use a Totals
query grouping by this field, or use it in your Report's Sorting and Grouping
feature to group by the month.
 
F

Frances LeMay

John W. Vinson said:
I have a query for orders shipped by date. Is there a formula to use to
total by month when running a report for the year. I want to report to show
total quanity for each month. Thnaks

Sure. Add a field to your Query by typing

ShipMonth: Month([Shipdate])

using whatever fieldname you use for the date. You can either use a Totals
query grouping by this field, or use it in your Report's Sorting and Grouping
feature to group by the month.
 

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

Top