In our LiveCycle Designer form design we have a repeating table with a Total field. The total is rounding some numbers up and not rounding other numbers. For example:
58.81 x 42.5 = 2499.43 which is correct.
60.49 x 5.5 = 332.69 which is incorrect - it should be 332.70.
The JavaScript formula we are using is:
this.rawValue = OTRate.rawValue * Hours.rawValue
Any ideas on what is going on here???