Hi all, i want to count the records and group them. But this doesnt work if there's empty records in location.
SELECT Sheet4.Location, Count(Sheet4.Location) AS CountOfLocation
FROM Sheet4
GROUP BY Sheet4.Location;
e.g
Location count
test1 5
test2 7
empty 0 (where this should be 4 records)
so how do i group empty records?
cheers
SELECT Sheet4.Location, Count(Sheet4.Location) AS CountOfLocation
FROM Sheet4
GROUP BY Sheet4.Location;
e.g
Location count
test1 5
test2 7
empty 0 (where this should be 4 records)
so how do i group empty records?
cheers