G
Guest
SELECT Count([Log table].Log) AS [6 South], [Log table].Date, [Log table].Room
FROM [Log table]
WHERE ((([Log table].Room) Between "603" And "641"))
GROUP BY [Log table].Date, [Log table].Room;
I need a Total count of the first field called 6 South....instead I get a
number 1 for every entry. I tried sum but that doesnt work either. I know I
am doing something really basic but can anyone please help me Im just a
beginner. Thank you in advance.
FROM [Log table]
WHERE ((([Log table].Room) Between "603" And "641"))
GROUP BY [Log table].Date, [Log table].Room;
I need a Total count of the first field called 6 South....instead I get a
number 1 for every entry. I tried sum but that doesnt work either. I know I
am doing something really basic but can anyone please help me Im just a
beginner. Thank you in advance.