Query

  • Thread starter Thread starter walters
  • Start date Start date
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
 
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.
 
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

Similar Threads

Report Total 1
Queries & Fiscal weeks 7
Query where... and if no results 4
Problem with Query Calculation 2
My query Sum on report footer. 1
group by month 9
Yr Rpt Mo Total 3
Sorting by year 2

Back
Top