Rounding Dilema

D

DS

I have a rounding problem.

If I divide 15 by 2 I get .075 but I need to store it in a table as .08 How
would I do this?

Thanks
DS
 
A

AccessVandal via AccessMonster.com

Hi DS,

Try

yourControlName = Round(0.15 / 2, 3)
DS wrote:
I have a rounding problem.

If I divide 15 by 2 I get .075 but I need to store it in a table as .08 How
would I do this?

Thanks
DS
 
Top