I have the following line in Excel VBA:
ActiveCell.Offset(r, 1).Value = IIf(rs2.Fields("SalesRelatedCallsQTD").Value = 0, "--", FormatPercent(rs2.Fields("SoldCallsQTD").Value / rs2.Fields("SalesRelatedCallsQTD").Value, 2))
When I run the macro in Excel I get a "Run-time error '6': Overflow" error.
I know there is the possibility of getting a 0 value in the denominator hence the use of IIf to check for this. Is it possible that Excel is still trying to calculate the
FormatPercent(rs2.Fields("SoldCallsQTD").Value / rs2.Fields("SalesRelatedCallsQTD").Value, 2)
and throwing the error? If so how do I get around this or is there something else wrong with this code?
EDIT
When I add a watch here are the values I get:
rs2.Fields("SalesRelatedCallsQTD").Value : 0 : Variant/Long
rs2.Fields("SoldCallsQTD").Value : 0 : Variant/Long
rs2.Fields("SoldCallsQTD").Value / rs2.Fields("SalesRelatedCallsQTD").Value : <Overflow> : Variant/Integer
The 3 arguments of an
IIf
are evaluated before the test is actually done. You can try it with the code below for example, which will return a division by zero. However the error you get is not a "Division by 0" but an "Overflow" error so this is not the only problem.I am not sure exactly what caused the error but changing to the following fixed it. I also created a simple NotNullOrZero macro as checking for > 0 was not enough (Null / Null doesn't throw an error, go figure). I know the NotNullOrZero is very simplistic but I know all my values are Null or Int so I didn't make it very robust.