i have a simple formula that goes like this
curPenalty = Round(txtGross * 0.05, 2)
curPenalty is a variable set to currency and txtGross is a field set to currency with an auto decimal place.
When txtGross value was $261.70 * 0.05 would equal $13.085 rounding should make it equal $13.09 but it comes out as $13.08
How do i get it round the third decimal place up if it is greater than equal to 5 or down if less than 5?
curPenalty = Round(txtGross * 0.05, 2)
curPenalty is a variable set to currency and txtGross is a field set to currency with an auto decimal place.
When txtGross value was $261.70 * 0.05 would equal $13.085 rounding should make it equal $13.09 but it comes out as $13.08
How do i get it round the third decimal place up if it is greater than equal to 5 or down if less than 5?