Assuming ratecrm is required, the following result was found.
and simply deduct 1/10th of a cent/penny: // ------------------------- // Make .545 = .54 and .546 = .55 // CRM rounding v_RateCrm = 12345.545; info "Rate CRM 545: " + v_RateCrm; v_Rounded = (v_RateCrm - 0.001).round(2); info "j) " + v_Rounded; //...