How do I round a number in a calculation to two decimal places?

J

Jules

I have a calculation in a form field: =[Gross] *0.025

I need this to calculate to 2 decimal places and round up or down - ex: .125
would be .13, .124 would be .12.

I am fairly new to Access and am using Access 2002.

Can someone help me, please?

Thank you!
 
R

ruralguy via AccessMonster.com

Have you tried =Round([Gross] *0.025,2)?
I have a calculation in a form field: =[Gross] *0.025

I need this to calculate to 2 decimal places and round up or down - ex: .125
would be .13, .124 would be .12.

I am fairly new to Access and am using Access 2002.

Can someone help me, please?

Thank you!
 
J

Jules

This works great ~ I knew it was something simple that I was missing! I had
done the =Round, but didn't enclose the rest as I should have.

Thank you so much!
Jules

ruralguy via AccessMonster.com said:
Have you tried =Round([Gross] *0.025,2)?
I have a calculation in a form field: =[Gross] *0.025

I need this to calculate to 2 decimal places and round up or down - ex: .125
would be .13, .124 would be .12.

I am fairly new to Access and am using Access 2002.

Can someone help me, please?

Thank you!
 
R

ruralguy via AccessMonster.com

You are welcome. Go into VBA Help with <ALT> F11 and then F1 and key in
Round into the Answer Wizard. There is actually a lot of help there. Also
look in the contents under R in the Functions for additional help.
This works great ~ I knew it was something simple that I was missing! I had
done the =Round, but didn't enclose the rest as I should have.

Thank you so much!
Jules
Have you tried =Round([Gross] *0.025,2)?
[quoted text clipped - 8 lines]
 

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

Top