Rounding

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I guess I am in the minority when I want rounding to occur. I just can't
figure out how. I have a database that tracks real estate contracts. I am
using the purchase price to calculate state stamp taxes via a query. The
formula is easy -

State Stamp: (([Total Purchase Price]/500)*0.5)

The trick is that the resulting number must always round up. So even if the
number is $421.01, it has to round up to $422.00. I'm not quite sure how to
do this. I would love to hear any suggestions.

Thanks!
Mark
 
Mybe there is another way but you can use that

format(format(MyNumber,"#,###"),"#,###.00")

the first formet round the number and the second one put to zero in the right.
 
?Format(-Int(-421.01), "0.00")
422.00

?Format(-Int(-421.00), "0.00")
421.00
 

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

Rounding 2
Found a Bug or Error in Access 2002-2003 Round Function 3
Rounding 10
Round up number 2
Rounding up! 2
Do not round percentage 1
Bankers Rounding 1
Rounding Numbers 2

Back
Top