Calculated field
I'm trying to create a calculated field that will test if a value is greater than zero. If so, then my credit amount value should be zero or if not then the value of the credit amount should be brought in. When I validate the formula below, I get an error box with no error. Any suggestions?
Thanks.
Thanks.
if _chkamt > 0
then return _cr = 0
else
return _cr
endif
Answers