I have the following query...(aided by this wonderful forum!)
SELECT Calls.User_ID, Calls.Call_Type, Calls.Status, Calls.Date_Time
FROM Calls
WHERE (((Calls.Date_Time) Between [Forms]![frmCallsQuery]![Text1].[Value] And DateAdd("d",1,[Forms]![frmCallsQuery]![Text2].[Value])));
I would also like to obtain a total no of calls per user and display them on a report.
ie. User 1 Total Calls = 25
User 2 Total Calls = 12 etc
I am unsure as to how to go about this, ao any help would save me some more hair!!
Thanks in advance!!
SELECT Calls.User_ID, Calls.Call_Type, Calls.Status, Calls.Date_Time
FROM Calls
WHERE (((Calls.Date_Time) Between [Forms]![frmCallsQuery]![Text1].[Value] And DateAdd("d",1,[Forms]![frmCallsQuery]![Text2].[Value])));
I would also like to obtain a total no of calls per user and display them on a report.
ie. User 1 Total Calls = 25
User 2 Total Calls = 12 etc
I am unsure as to how to go about this, ao any help would save me some more hair!!
Thanks in advance!!