All,
I am doing a basic calculation as follows:
The output of these debug.prints is
Why is access/the vba rounding the 1.666 up to 2?
I would like to just see the 1.66 to 2 decimal places such as 1.67 is produced.
I am doing a basic calculation as follows:
Code:
FiscalRatio = countfiscalsafety / countfiscalaccidents Debug.Print countfiscalsafety / countfiscalaccidents Debug.Print FiscalRatio
Code:
1.66666666666667 2
I would like to just see the 1.66 to 2 decimal places such as 1.67 is produced.
Comment