I have a query called StockFlow that derives its values from three queries.However if one of the queries is blank, then then query
StockFlow is also not populated.Is there any possibility to use mine query StockFlow when one of the queries is blank?
My query is the following :
SELECT qryOnOrder.Productid, qryOnOrder.grade, qryOnOrder.size, Sum(qryOnOrder.SumOfcartons) AS OnOrder, Sum(qrySold.SumOfcartons) AS Sold,
Sum(qryInflow.SumOfcartons) AS Inflow
FROM (qryOnOrder INNER JOIN qrySold ON qryOnOrder.Productid = qrySold.Productid) INNER JOIN qryInflow ON qrySold.Productid = qryInflow.Productid
GROUP BY qryOnOrder.Productid, qryOnOrder.grade, qryOnOrder.size;




