I have the following query and what i cannot seem to do is get a SUM of the COUNT field. Can someone please help?
thanks!
Paul
Code:
SELECT owssvr.[Date (do not change)], owssvr.[Created By], Count(owssvr.[Created By]) AS [CountOfCreated By]
FROM owssvr
GROUP BY owssvr.[Date (do not change)], owssvr.[Created By];
thanks!
Paul