Assuming test9 is required, the following result was found.
issue is that round() only rounds up decimals to integers when the datatype is an integer and not a decimal: // syntax: // v_Test9.round(2); // round(v_Test9, 2); v_Test9 = 10.0; info v_Test9.round(2); // yields 10.00 v_Test10 = 10; info...