A
Ann
I am using Access 2002. I have a report that creates a bar indicating survey
response information. I need to know all the surveys that have been sent and
their responses, or lack of responses. That's where the problem lies with
those that don't respond.
On the report I count and display the number of surveys returned using
=Count(IIf([txtUsedKnowledge]="Not at all/Never",1,Null))
Then I figure out and display the response percent using
=Nz([NeverUsedKnowledge]/[AnsweredUsedKnowledge])
The part that creates the bar is rctNeverUsedBar.Width =
Nz([NeverUsedKnowledge] / [AnsweredUsedKnowledge]) * (1440 * 4)
This was working great until there was a survey that didn't receive any
responses and now I receive a Runtime error 6, Overflow.
I'm not a programmer so I really don't know how to handle this error. I
tried using the No Data event but since there is one line indicating the
survey was sent there really is data. Then I tried using the On Error event
to send a message but that didn't work either. Does anyone have any
suggestions on how I can fix this? Thank you in advance.
response information. I need to know all the surveys that have been sent and
their responses, or lack of responses. That's where the problem lies with
those that don't respond.
On the report I count and display the number of surveys returned using
=Count(IIf([txtUsedKnowledge]="Not at all/Never",1,Null))
Then I figure out and display the response percent using
=Nz([NeverUsedKnowledge]/[AnsweredUsedKnowledge])
The part that creates the bar is rctNeverUsedBar.Width =
Nz([NeverUsedKnowledge] / [AnsweredUsedKnowledge]) * (1440 * 4)
This was working great until there was a survey that didn't receive any
responses and now I receive a Runtime error 6, Overflow.
I'm not a programmer so I really don't know how to handle this error. I
tried using the No Data event but since there is one line indicating the
survey was sent there really is data. Then I tried using the On Error event
to send a message but that didn't work either. Does anyone have any
suggestions on how I can fix this? Thank you in advance.