It seems that the IFF evaluate everything in the (), regardless of the if results, and then returns the appropriate ones. This is causing an issue with this:
= IIf(Fields.Calls =0,0,Fields.Sub_Calls/Fields.Calls)*100
If Fields.Calls = 0, the expression errors with "division by zero"
shouldn't the expression ignore that and just return 0?
Thank you!
= IIf(Fields.Calls =0,0,Fields.Sub_Calls/Fields.Calls)*100
If Fields.Calls = 0, the expression errors with "division by zero"
shouldn't the expression ignore that and just return 0?
Thank you!