This content has been marked as final.
Show 3 replies
-
1. Re: I want to set a calculated field to not display a negative number
AncientGrams Nov 6, 2014 9:13 AM (in response to rickstsx04)Can't you just check it in Javascript?
if (field.rawValue < 0) {
field.rawValue = 0;
}
-
2. Re: I want to set a calculated field to not display a negative number
rickstsx04 Nov 6, 2014 12:09 PM (in response to AncientGrams)Thanks for the help, but this doesn't work because my calculation is in FormCalc.
-
3. Re: I want to set a calculated field to not display a negative number
jnicholas330 Nov 6, 2014 4:09 PM (in response to rickstsx04)Try:
Max(Field1,0)
Will pick Field1 value, or 0, whichever is greater.

