M
Michael
I have a subreport "totalsinorders" that is supposed to show the total
weight by product from another query "order details query".
When I run the report, It only shows one of the products and the total for
this product that are in the report.
There are 6 different products that are listed by the query and the one that
does show on the report is the second one down so it is not just showing the
first and not the rest.
thank you for your help
Michael
the code of the subreport
SELECT totalsinorders.SumOfEsigenz, totalsinorders.Prodotto FROM
totalsinorders;
the code of the query
SELECT Sum([order details query].Esigenz) AS SumOfEsigenz, [order details
query].Prodotto
FROM [order details query]
GROUP BY [order details query].Prodotto;
weight by product from another query "order details query".
When I run the report, It only shows one of the products and the total for
this product that are in the report.
There are 6 different products that are listed by the query and the one that
does show on the report is the second one down so it is not just showing the
first and not the rest.
thank you for your help
Michael
the code of the subreport
SELECT totalsinorders.SumOfEsigenz, totalsinorders.Prodotto FROM
totalsinorders;
the code of the query
SELECT Sum([order details query].Esigenz) AS SumOfEsigenz, [order details
query].Prodotto
FROM [order details query]
GROUP BY [order details query].Prodotto;