M
Mark
Hello All,
I'm trying to get the latest stocktake quantity and the latest
stocktake date from my tables.
Where am I going wrong?
Thanks,
Mark
The below is from the SQL view of my query
SELECT tblResources.ResourceName, Max([tblStockTake].[StockTakeDate])
AS CountDate, tblStockTake.Quantity
FROM tblResources INNER JOIN tblStockTake ON tblResources.ResourceID =
tblStockTake.ResourceID;
I'm trying to get the latest stocktake quantity and the latest
stocktake date from my tables.
Where am I going wrong?
Thanks,
Mark
The below is from the SQL view of my query
SELECT tblResources.ResourceName, Max([tblStockTake].[StockTakeDate])
AS CountDate, tblStockTake.Quantity
FROM tblResources INNER JOIN tblStockTake ON tblResources.ResourceID =
tblStockTake.ResourceID;