Hi,
I am creating a report which shows # of changes made for each customer account by account executive. I would like to be able to show the counts by week, month, quarter, or annual.
I created a query:
SELECT [UserName],[ChangeDate], Count[UserName] AS [Total # of Changes Made]
FROM ChangeAudit
GROUP BY [UserName], [ChangeDate];
But it only displays results by day by user. How do I group the results by week, month, quarter, or annual?
Thank you!!
I am creating a report which shows # of changes made for each customer account by account executive. I would like to be able to show the counts by week, month, quarter, or annual.
I created a query:
SELECT [UserName],[ChangeDate], Count[UserName] AS [Total # of Changes Made]
FROM ChangeAudit
GROUP BY [UserName], [ChangeDate];
But it only displays results by day by user. How do I group the results by week, month, quarter, or annual?
Thank you!!