E
Eric
I have set up a query that sums my attributes by shift.
SELECT tblProdTesting.Shift, Sum(tblProdTesting.Width1) AS
Width, Sum(tblProdTesting.Treat) AS Treat, Sum
(tblProdTesting.[Bag Length]) AS [Bag Length], Sum
(tblProdTesting.Gauge) AS Gauge, Sum
(tblProdTesting.FilmOpen) AS [Film Open], Sum
(tblProdTesting.Perforation) AS Perforation, Sum
(tblProdTesting.[Side Seam]) AS [Side Seam], Sum
(tblProdTesting.BottomSeal) AS [Bottom Seal], Sum
(tblProdTesting.EdgeWeave) AS EdgeWeave, Sum
(tblProdTesting.[Vent Holes]) AS [Vent Holes], Sum
(tblProdTesting.Other) AS Other
FROM tblProdTesting
GROUP BY tblProdTesting.Shift;
What I need now is how do I get my attributes to show in
desending order based off of the value? It would look
something like this:
EdgeWeave 10
Perforation 9
Other 8
Vent Holes 6
I am stumped on this.
SELECT tblProdTesting.Shift, Sum(tblProdTesting.Width1) AS
Width, Sum(tblProdTesting.Treat) AS Treat, Sum
(tblProdTesting.[Bag Length]) AS [Bag Length], Sum
(tblProdTesting.Gauge) AS Gauge, Sum
(tblProdTesting.FilmOpen) AS [Film Open], Sum
(tblProdTesting.Perforation) AS Perforation, Sum
(tblProdTesting.[Side Seam]) AS [Side Seam], Sum
(tblProdTesting.BottomSeal) AS [Bottom Seal], Sum
(tblProdTesting.EdgeWeave) AS EdgeWeave, Sum
(tblProdTesting.[Vent Holes]) AS [Vent Holes], Sum
(tblProdTesting.Other) AS Other
FROM tblProdTesting
GROUP BY tblProdTesting.Shift;
What I need now is how do I get my attributes to show in
desending order based off of the value? It would look
something like this:
EdgeWeave 10
Perforation 9
Other 8
Vent Holes 6
I am stumped on this.