Avatar

Level 1

Found the answer myself.  It was a problem with a zero denominator.  By using an if/then/endif you can control when it's trying to run the calculation.

The original formula was (weight*703)/(height*height).

The solution was:

if(height>0)then(weight*703)*(height*height)endif

That prevents it from trying to run the calculation before a value has been entered in 'height'.