L
lez
I am trying to run a group query Where the date is Now() and want a count of
date to show the numbers of calls made.
I have tried the obvious:
SELECT tblinvest_calls.contactID, Sum(tblinvest_calls.df1) AS SumOfdf1
FROM tblinvest_calls
WHERE (((tblinvest_calls.df1)=Now()))
GROUP BY tblinvest_calls.contactID;
But am getting no results when I run the query, can anyone help please?
date to show the numbers of calls made.
I have tried the obvious:
SELECT tblinvest_calls.contactID, Sum(tblinvest_calls.df1) AS SumOfdf1
FROM tblinvest_calls
WHERE (((tblinvest_calls.df1)=Now()))
GROUP BY tblinvest_calls.contactID;
But am getting no results when I run the query, can anyone help please?