Rounding numbers to 2 DP

C

Craig Dovey

I am multiplying numbers in two fields to return a number to a third field.

I use the following formula

Field3 = Round( Field1 * Field2 , 2)

This works fine - however when the answer is exactly 0.5, 1.5, 2.5 etc.. it
will round up rather than round down.

Does anybody know the solution to this problem?

Thanks
 
Top