There is a system constraint when using the Min and Max parameters on a Numbers field.  These Min and Max numbers need to be converted to Integers in order to be compared with the number entered by the user.  The issue is when there are multiple place values after the decimal.  HIPAA forms will only compare up to 5 place values.  The 5 place values is a fixed parameter.


Here is an example:


The max number parameter is set to 10.  The user enters 10.00000999999.  This will pass the comparison test, because the first 5 place values are all 0s.  The system is comparing 10.00000 to 10 and it passes.  10.00000999999 will still be stored on the form.