Rounding Dilema

  • Thread starter Thread starter DS
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Save As 3
rounding up a number 8
Round a number/ Access 2007 4
round up to the next 1/2 kg....formatting 2
Datediff 1
Rounding problem 9
rounding is not consistant 3
Query field question 5

Back
Top