R
rob muzzy
Hi,
I have a query with the following code:
SELECT Query2.PART_ID, Query2.PRODUCT_CODE, Query2.ORDER_QTY, ROUND
(([QUERY2].[ORDER_QTY]/[QUERY2].[TOTAL])*100,2) AS [SUM]
FROM Query2
WHERE (((Query2.PRODUCT_CODE) Like 'LINERS'))
ORDER BY ROUND(([QUERY2].[ORDER_QTY]/[QUERY2].[TOTAL])*100,2) DESC;
i am trying to create a running total to take the sum and show the
running count of sum. Meaning i want to take the value of sum.row2 and
add it to sum row1 and show the sum of row1+row2 and so on keeping a
running total. This is for an 80/20 report. can anyone help me with
some code?
Rob
I have a query with the following code:
SELECT Query2.PART_ID, Query2.PRODUCT_CODE, Query2.ORDER_QTY, ROUND
(([QUERY2].[ORDER_QTY]/[QUERY2].[TOTAL])*100,2) AS [SUM]
FROM Query2
WHERE (((Query2.PRODUCT_CODE) Like 'LINERS'))
ORDER BY ROUND(([QUERY2].[ORDER_QTY]/[QUERY2].[TOTAL])*100,2) DESC;
i am trying to create a running total to take the sum and show the
running count of sum. Meaning i want to take the value of sum.row2 and
add it to sum row1 and show the sum of row1+row2 and so on keeping a
running total. This is for an 80/20 report. can anyone help me with
some code?
Rob