Hello,
My Table looks like this :
AgentID
Mail
Date
I'm trying to build a query that would show me the number of mails treated by every agent / day
For example if the table looks like this :
AgentID Mail Date
1 bla 1/1/2006
1 blabla 1/1/2006
2 bl 1/1/2006
2 bli 2/1/2006
I would like my query to look like :
AgentID NoMails Date
1 2 1/1/2006
2 1 1/1/2006
2 2 2/1/2006
I'm not sure if this is logical, but next i would like a transform query that has for its columns the hours of the day, and as rows AgentID, so i can see how many mails were treated by witch agent and when.
Is this possible?
My Table looks like this :
AgentID
Date
I'm trying to build a query that would show me the number of mails treated by every agent / day
For example if the table looks like this :
AgentID Mail Date
1 bla 1/1/2006
1 blabla 1/1/2006
2 bl 1/1/2006
2 bli 2/1/2006
I would like my query to look like :
AgentID NoMails Date
1 2 1/1/2006
2 1 1/1/2006
2 2 2/1/2006
I'm not sure if this is logical, but next i would like a transform query that has for its columns the hours of the day, and as rows AgentID, so i can see how many mails were treated by witch agent and when.
Is this possible?