Is there a way to preform subtraction on two fields and either report the result or 0 if the result is a negative number? I can't seem to find anything on this.
/edit - nevermind I found it.
On the Validation tab, in Custom Validation add this script:
if(event.value < 0)event.value ="0"