T
Tony Wainwright
Hi
Have some reports that show stock sales. However there are some products
that don't sell and I would like to remove these from the reports.
The query behind the reports is something like this:
SELECT luProd.StockCode, luProd.Description, qryProdBaseCurMnth.CurrentMonth
FROM luProd LEFT JOIN qryProdBaseCurMnth ON luProd.StockCode =
qryProdBaseCurMnth.StockCode
ORDER BY luProd.StockCode;
Without changing the query - is there anyway that I can make the report
ignore any records that contain either Null or Zero values for
qryProdBaseCurMnth.CurrentMonth?
Tony
Have some reports that show stock sales. However there are some products
that don't sell and I would like to remove these from the reports.
The query behind the reports is something like this:
SELECT luProd.StockCode, luProd.Description, qryProdBaseCurMnth.CurrentMonth
FROM luProd LEFT JOIN qryProdBaseCurMnth ON luProd.StockCode =
qryProdBaseCurMnth.StockCode
ORDER BY luProd.StockCode;
Without changing the query - is there anyway that I can make the report
ignore any records that contain either Null or Zero values for
qryProdBaseCurMnth.CurrentMonth?
Tony