G
Guest
Hello, I'm an Access Newby so sorry for the simple question!
I have a list of stock items, and perform a query to list a certain type of
stock. I want to also list the number of items retrieved, I have been trying
to use COUNT([StockID]) but to no avail (I just get 1's returned!) I don't
use SQL (I just use the design view) but looking at the SQL view I have this:
SELECT Stock.StockID, Stock.StockItemName, Count(Stock.StockItemName) AS
CountOfStockItemName
FROM Stock
GROUP BY Stock.StockID, Stock.StockItemName
HAVING (((Stock.StockItemName)="Porsche"));
I have a list of stock items, and perform a query to list a certain type of
stock. I want to also list the number of items retrieved, I have been trying
to use COUNT([StockID]) but to no avail (I just get 1's returned!) I don't
use SQL (I just use the design view) but looking at the SQL view I have this:
SELECT Stock.StockID, Stock.StockItemName, Count(Stock.StockItemName) AS
CountOfStockItemName
FROM Stock
GROUP BY Stock.StockID, Stock.StockItemName
HAVING (((Stock.StockItemName)="Porsche"));