Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
xQty=0
xVal=100
xRat=0
if xQty <> 0
xRat=xVal/xQty
endif
[code]
but the net result is the same
Regards
Griff
Keep [Smile]ing
[center]There are 10 kinds of people in the world, those who understand binary and those who don't.
[i]I'm trying to cut down on the use of shrieks (exclamation marks), I'm told they are not good for you. [/i][/center]
xQty=0
xVal=100
xrat=IIF(xQty#0,xVal/xQty,0)
? xrat
xQty=0
xVal=100
IF(xQty#0)
xrat = xVal/xQty
Else
*** some message to the user/developer
Endif
? xrat