How can we check if input field B is greater than Input field A?
I have created a table in PDF. Two of the columns is Field A and Field B. Both are defined as numeric.
In another column of the same table, is the result of Field B less Field A. Field B should always be greater than Field A
What I want is to make sure that the result is a positive number. A negative number is invalid.
Examples:
This is Correct
Field A = 503
Field B = 510
Result is 7 (positive number)
This is Wrong
Field A = 432
Field B = 400
Result is -32 (negative number)
Is there a way I can trap the negative results?