Hello
I am having problems creating a query that shows the row count for the current month from a table.
Although I can do both seperately I'm not able to create a single query without an error message.
Here's the query that currently works but needs to only show current months records.
SELECT Count(*) AS DealsIn
FROM EventLog
WHERE (((EventLog.EventType)='Status') AND ((EventLog.Event)='5'));
Any help would be appreciated.
Thank you
I am having problems creating a query that shows the row count for the current month from a table.
Although I can do both seperately I'm not able to create a single query without an error message.
Here's the query that currently works but needs to only show current months records.
SELECT Count(*) AS DealsIn
FROM EventLog
WHERE (((EventLog.EventType)='Status') AND ((EventLog.Event)='5'));
Any help would be appreciated.
Thank you