View Full Version : Need to count number of times in a room


mkb-bf
08-04-2004, 01:02 PM
I have a database that tells me a name and what room was used among other data. I need to count how many times each room was used. As a newbie in Access I have been unable to solve this query. Could someone please help as to what I need to do to get an acurate count of numbers of times room was used.
Thanks in Advance for your help!

pbaldy
08-04-2004, 01:14 PM
Something like:

SELECT RoomField, Count(RoomField) AS HowMany
FROM TableName
GROUP BY RoomField

mkb-bf
08-04-2004, 02:59 PM
Thank you so much!