Hi all,Have a major problem using LC version 8. Designing on-line
chemotherapy templates for the hospital.Issue: 1. calculated fields are
automatically rounding to the whole number2. subsequent global values
are rounded even if I use: $=round($,2) for the first calculated
fieldThe only area in the form where I deliberately made the decimal
round is by using javascript: function roundNumber(num, dec) { var
result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec); return
result;
}BSA.rawValue=ro...