A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Total Query



 
 
Thread Tools Display Modes
  #1  
Old October 16th, 2009, 03:46 PM posted to microsoft.public.access.forms
Abe Katz
external usenet poster
 
Posts: 43
Default Total Query

Hello All,

I need to know, when was the last time (date) we sold an ItemNo and the
total quantity sold.
I created a Total query and in the Total cell, for the Date I entered Max
and for the Qty I entered Last.
The problem is, The date works fine but the qty doesn't work. The date comes
up the last date sold but the Qty is not the last it's from a different
record.

Please let me know,
Thank you
Abe




  #2  
Old October 16th, 2009, 06:36 PM posted to microsoft.public.access.forms
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Total Query

That's not the way Totals queries work.

What the query is doing is returning is the Max date value, but essentially
a random value for Qty. That's because you cannot make any assumption about
the order of records in a table.

What you actually want is a subquery, something like:

SELECT CustomerId, ItemNo, OrderDate, OrderQty
FROM OrderTable As A
WHERE OrderDate IN
(SELECT Max(OrderDate)
FROM OrderTable
WHERE CustomerId = A.CustomerId)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Abe Katz" wrote in message
...
Hello All,

I need to know, when was the last time (date) we sold an ItemNo and the
total quantity sold.
I created a Total query and in the Total cell, for the Date I entered Max
and for the Qty I entered Last.
The problem is, The date works fine but the qty doesn't work. The date
comes up the last date sold but the Qty is not the last it's from a
different record.

Please let me know,
Thank you
Abe






  #3  
Old October 19th, 2009, 08:31 PM posted to microsoft.public.access.forms
Abe Katz
external usenet poster
 
Posts: 43
Default Total Query

Doug,
I need a list from all the Items in the Inventory, the last date each item
was last sold, and the qty sold.
Doug Steele told me to use a subquery, it works fine with one table but when
I have a Header and a Detail table and using the INNER JOIN, the system
doesn't let me add the aliases table name (AS A). Error msg "Syntax error
missing operator in query expression".

This is my code,
SELECT [Invoice Detail].StyleNo, Invoice.Date AS DateLastInv, Sum([Invoice
Detail].Qty) AS QtyInv
FROM Invoice INNER JOIN [Invoice Detail] ON Invoice.InvoiceNo = [Invoice
Detail].InvoiceNo AS A (AS A, error message)
GROUP BY [Invoice Detail].StyleNo, Invoice.Date
HAVING (((Invoice.Date) In (SELECT Max(Date) FROM [Invoice] WHERE [Invoice
Detail].StyleNo=A.StyleNo)));

Please let me know
Thank you
abe

"Douglas J. Steele" wrote in message
...
That's not the way Totals queries work.

What the query is doing is returning is the Max date value, but
essentially a random value for Qty. That's because you cannot make any
assumption about the order of records in a table.

What you actually want is a subquery, something like:

SELECT CustomerId, ItemNo, OrderDate, OrderQty
FROM OrderTable As A
WHERE OrderDate IN
(SELECT Max(OrderDate)
FROM OrderTable
WHERE CustomerId = A.CustomerId)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Abe Katz" wrote in message
...
Hello All,

I need to know, when was the last time (date) we sold an ItemNo and the
total quantity sold.
I created a Total query and in the Total cell, for the Date I entered Max
and for the Qty I entered Last.
The problem is, The date works fine but the qty doesn't work. The date
comes up the last date sold but the Qty is not the last it's from a
different record.

Please let me know,
Thank you
Abe








  #4  
Old October 19th, 2009, 08:41 PM posted to microsoft.public.access.forms
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Total Query

While it can be done in a single query, the easiest approach is to create a
query that joins the two tables and use that query in the same query as I
suggested earlier.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Abe Katz" wrote in message
...
Doug,
I need a list from all the Items in the Inventory, the last date each item
was last sold, and the qty sold.
Doug Steele told me to use a subquery, it works fine with one table but
when
I have a Header and a Detail table and using the INNER JOIN, the system
doesn't let me add the aliases table name (AS A). Error msg "Syntax error
missing operator in query expression".

This is my code,
SELECT [Invoice Detail].StyleNo, Invoice.Date AS DateLastInv, Sum([Invoice
Detail].Qty) AS QtyInv
FROM Invoice INNER JOIN [Invoice Detail] ON Invoice.InvoiceNo = [Invoice
Detail].InvoiceNo AS A (AS A, error message)
GROUP BY [Invoice Detail].StyleNo, Invoice.Date
HAVING (((Invoice.Date) In (SELECT Max(Date) FROM [Invoice] WHERE [Invoice
Detail].StyleNo=A.StyleNo)));

Please let me know
Thank you
abe

"Douglas J. Steele" wrote in message
...
That's not the way Totals queries work.

What the query is doing is returning is the Max date value, but
essentially a random value for Qty. That's because you cannot make any
assumption about the order of records in a table.

What you actually want is a subquery, something like:

SELECT CustomerId, ItemNo, OrderDate, OrderQty
FROM OrderTable As A
WHERE OrderDate IN
(SELECT Max(OrderDate)
FROM OrderTable
WHERE CustomerId = A.CustomerId)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Abe Katz" wrote in message
...
Hello All,

I need to know, when was the last time (date) we sold an ItemNo and the
total quantity sold.
I created a Total query and in the Total cell, for the Date I entered
Max and for the Qty I entered Last.
The problem is, The date works fine but the qty doesn't work. The date
comes up the last date sold but the Qty is not the last it's from a
different record.

Please let me know,
Thank you
Abe










 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:17 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.