Ok, I'm pretty new to this stuff - but I need a bit of help.
Here is my query so far:
SELECT Collars.Date, Count(Collars.Date) AS [CountofDate]
FROM Collars
GROUP BY Collars.Date
HAVING max(countofdate);
But, it comes up with a 'Enter Parameter Value' box. I sort of get what its doing - it isn't finding the 'CountofDate' column I made earlier right? Well what do I need to do?
Thanks.
Here is my query so far:
SELECT Collars.Date, Count(Collars.Date) AS [CountofDate]
FROM Collars
GROUP BY Collars.Date
HAVING max(countofdate);
But, it comes up with a 'Enter Parameter Value' box. I sort of get what its doing - it isn't finding the 'CountofDate' column I made earlier right? Well what do I need to do?
Thanks.