M
MichelleM via AccessMonster.com
I have created a report to view stats on a call handler agent. I have a
calculated control source for their quality score, which is a percentage:
=(Sum(AgentReportCard!RecordingScore))/(Sum(AgentReportCard!RecordingCount))*
(0.01)
If the report is ran for a time period where they do not have a score, #Num!
is returned on my report. I have tried this for a fix:
=IIf([HasData],(Sum(AgentReportCard!RecordingScore))/(Sum(AgentReportCard!
RecordingCount))*(0.01),"N/A")
And it didn't work. If the agent does not have a score for the time period,
I would like it to return N/A. Any suggestions?
Thank you!
calculated control source for their quality score, which is a percentage:
=(Sum(AgentReportCard!RecordingScore))/(Sum(AgentReportCard!RecordingCount))*
(0.01)
If the report is ran for a time period where they do not have a score, #Num!
is returned on my report. I have tried this for a fix:
=IIf([HasData],(Sum(AgentReportCard!RecordingScore))/(Sum(AgentReportCard!
RecordingCount))*(0.01),"N/A")
And it didn't work. If the agent does not have a score for the time period,
I would like it to return N/A. Any suggestions?
Thank you!