Hi, I was wondering if somebody could help me. I have wrote the following query.
TRANSFORM Count(daily_effectiveness.JOBTIME) AS CountOfJOBTIME,
TRANSFORM Sum(daily_effectiveness.JOBTIME) AS SumOfJOBTIME
SELECT daily_effectiveness.EIN, Count(daily_effectiveness.JOBTIME) AS [Total Agent Work], Sum(daily_effectiveness.JOBTIME) AS [Total Time]
FROM daily_effectiveness
GROUP BY daily_effectiveness.EIN
PIVOT daily_effectiveness.ORBITQUEUE;
and when clicking on Datasheet i then get the following error:
"SYNTAX ERROR IN TRANSFORM STATEMENT"
I think this has something to do with the transform line, but i would like to display both a count and a sum.
Please if somebody could help. Thanks in advance.
TRANSFORM Count(daily_effectiveness.JOBTIME) AS CountOfJOBTIME,
TRANSFORM Sum(daily_effectiveness.JOBTIME) AS SumOfJOBTIME
SELECT daily_effectiveness.EIN, Count(daily_effectiveness.JOBTIME) AS [Total Agent Work], Sum(daily_effectiveness.JOBTIME) AS [Total Time]
FROM daily_effectiveness
GROUP BY daily_effectiveness.EIN
PIVOT daily_effectiveness.ORBITQUEUE;
and when clicking on Datasheet i then get the following error:
"SYNTAX ERROR IN TRANSFORM STATEMENT"
I think this has something to do with the transform line, but i would like to display both a count and a sum.
Please if somebody could help. Thanks in advance.