R
Rod
I have:
TRANSFORM Count(tblCandidates.CALL_RESULTS) AS CountOfCALL_RESULTS
SELECT tblCandidates.CALLED_ON
FROM tblCandidates, [tblDaily Blast]
WHERE (((tblCandidates.CALLED_ON)>=Date()-35 And
(tblCandidates.CALLED_ON)<=Date()))
GROUP BY tblCandidates.CALLED_ON, tblCandidates.RETURNED_CALL
ORDER BY tblCandidates.CALLED_ON DESC
PIVOT tblCandidates.CALL_RESULTS;
I am looking to count the total calls made on the particular day. The total
calls is the sum of all "Corp Overview", "Message", "NI, At This Time", Not
Interested", "Thinking It Over", and "Will Call back" - basically anything
other than "-" and "Add to DNC".
How can I get this daily number so I can display it in a "Call" column in a
report? The idea is:
CALLED ON CALLS
Thu, Sep 13 07 151
Wed, Sep 12 07 137
I will adapt the same solution to populate other colums I need to display.
Thanks
TRANSFORM Count(tblCandidates.CALL_RESULTS) AS CountOfCALL_RESULTS
SELECT tblCandidates.CALLED_ON
FROM tblCandidates, [tblDaily Blast]
WHERE (((tblCandidates.CALLED_ON)>=Date()-35 And
(tblCandidates.CALLED_ON)<=Date()))
GROUP BY tblCandidates.CALLED_ON, tblCandidates.RETURNED_CALL
ORDER BY tblCandidates.CALLED_ON DESC
PIVOT tblCandidates.CALL_RESULTS;
I am looking to count the total calls made on the particular day. The total
calls is the sum of all "Corp Overview", "Message", "NI, At This Time", Not
Interested", "Thinking It Over", and "Will Call back" - basically anything
other than "-" and "Add to DNC".
How can I get this daily number so I can display it in a "Call" column in a
report? The idea is:
CALLED ON CALLS
Thu, Sep 13 07 151
Wed, Sep 12 07 137
I will adapt the same solution to populate other colums I need to display.
Thanks