I am using the following formula. When it runs in the master report most of the staff come out with the appropriate % of calls answered, but one employee in the last report came out with a 0% calls answered. After looking at the data the user did answer calls and it shows that in my non summarized fields.
Any ideas why this is? Did I make an error in my code? The only possibility I can think of is that this user did not answer any calls on one day therefore it throws the 0%. I did try to remove the =0 then 0 language from the formula and got a division by zero error
Any help is appreciated
Any ideas why this is? Did I make an error in my code? The only possibility I can think of is that this user did not answer any calls on one day therefore it throws the 0%. I did try to remove the =0 then 0 language from the formula and got a division by zero error
Any help is appreciated
Code:
if {tblIndvSympDataDaily.Calls Answered}= 0 then 0 else {tblIndvSympDataDaily.Calls Answered} % {tblIndvSympDataDaily.Calls Presented}