- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
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'.
Views
Replies
0 Likes
Total Likes