"If you post the SQL of you query we may get a better idea of the problem!"
Thanks Neil,
SELECT [Inventory Transactions Extended].Inventory.ID, [Inventory Transactions Extended].Inventory.Item, [Inventory Transactions Extended].[Transaction Type], Sum([Inventory Transactions Extended].[Stock Qty]) AS [SumOfStock Qty], [Inventory Transactions Extended].[Reorder Level], [Inventory Transactions Extended].[Target Stock Level], [Inventory Transactions Extended].Category, [Inventory Transactions Extended].Location, [Suppliers Extended].[Supplier Name], Sum([Inventory Transactions Extended].[Deployed Qty]) AS [SumOfDeployed Qty], Sum([Inventory Transactions Extended].[RMA Qty]) AS [SumOfRMA Qty]
FROM [Inventory Transactions Extended] LEFT JOIN [Suppliers Extended] ON [Inventory Transactions Extended].Supplier = [Suppliers Extended].ID
GROUP BY [Inventory Transactions Extended].Inventory.ID, [Inventory Transactions Extended].Inventory.Item, [Inventory Transactions Extended].[Transaction Type], [Inventory Transactions Extended].[Reorder Level], [Inventory Transactions Extended].[Target Stock Level], [Inventory Transactions Extended].Category, [Inventory Transactions Extended].Location, [Suppliers Extended].[Supplier Name]
HAVING ((([Inventory Transactions Extended].[Created Date])<DateAdd('d',1,[Forms]![frmStockLevelDates]![txtBegDate])));