Ok I have a table for receiving goods (ReceiveGoods) and it has:
1] RecQty - thats the amount ordered
2] RecRec - Thats the amount received
I have an inventory table for all my products which has:
1] Onorder
Problem:
I want to do: RecQty-RecRec by product in my Receiving table and place the result in Onorder in Inventory. This is the query I made
Update Query
Field: Onorder
Table: Inventory
Update to: DSum("[RecQty]-[RecRec]","ReceiveGoods","[Inventory]![inventoryID]"="[ReceiveGoods]![InventoryID]"
I get blanks when I run it. Why????
1] RecQty - thats the amount ordered
2] RecRec - Thats the amount received
I have an inventory table for all my products which has:
1] Onorder
Problem:
I want to do: RecQty-RecRec by product in my Receiving table and place the result in Onorder in Inventory. This is the query I made
Update Query
Field: Onorder
Table: Inventory
Update to: DSum("[RecQty]-[RecRec]","ReceiveGoods","[Inventory]![inventoryID]"="[ReceiveGoods]![InventoryID]"
I get blanks when I run it. Why????