I have form to calculate qty. on hand it works giving me the quantity on hand but every time i open the form ask for parameter value, how can i fix this?
here it's the expression:
and here it's the sql view:
Thank you
here it's the expression:
HTML:
OnHand: OnHand([pkProductID],Forms!FrmStockTakes!StockTakeDate)
Code:
SELECT tblProducts.ProductName, OnHand([pkProductID],Forms!FrmStockTakes!StockTakeDate) AS OnHand, tblProducts.pkProductID, tblProducts.UNIT, tblProducts.QuantityPerUnit, tblProducts.UnitPrice
FROM tblProducts;
Thank you