I am out of ideas and hoping this query can be accomplished. I have 2 tables, Products and ProductTransactions. They are relational via the ProductID field. The current Query reads: SELECT Sum ([ProductTransactions].[recieved] - [ProductTransactions].[sold])As OnHand, [Products].[SerialNumber] FROM Products INNER JOIN ProductTransactions ON [Products].[ProductID]=[ProductTransactions].[ProductID] GROUP BY [Products].[SerialNumber]. this gives me the current OnHand and Serial Number for all Products. What I want is a filter which returns only those records for which the OnHand for a Specific product is <= [Products].[ReorderLevel] for that product. Is this possible. I get nothing but errors when I place the "Where" clause anywhere in the above. I hope my explanation is clear. Any help would sure be appreciated.
Thanks
Thanks