Avatar

Level 1

This is probably very simple, but I can't seem to find the answer. I am using LiveCycle Designer 7.0.

I have a numeric field that calculates the percentage of change between two other numeric fields. Because the divisor in the equation can be zero, I have placed the calculation within an "If,Then,Else" statement. However, I cannot get the text "n/m" to display on the form if the divisor (PYGasSales) is zero. Can someone please tell me what I am missing in this statement?

if(PYGasSales ne 0) then
(YGasSalesVar/PYGasSales) * 100
else
"n/m"
endif

Thanks so much!