Rounding

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
 
G

Guest

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.
 

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


Top