Query to display highest totals

Joined
Jun 9, 2014
Messages
2
Reaction score
0
I am working on a query that works off of a table with these rows:

Date, Item_ID, Quantity

Sample data:

6/1/2014, 1, 30
6/2/2014, 1, 30
6/2/2014, 1, 30
6/3/2014, 2, 40
6/4/2014, 2, 40
6/6/2014, 2, 60

Now what I am trying to accomplish is make a query that sums each three day period (so 6/1/2014-6/3/2014 then 6/4/2013-6/6/2014).

Once that is done I only want to display whichever total is higher in the final column. In the case of the above data the Total column would have a value of 140 for Item_ID = 1. There are multiple Item_IDs in the table but for the purpose of this I need the query to work on each Item_ID separately.
 

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