access field rounding up newbee needs help

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

Guest

I have a field labled "roundup", it is to display the value of retail price
rounded up to the next highest $100.00 mark Example $1440.00 to $1500.00,
here is the expression I am using.

=Round([retailprice],5)
but it will not round up
 
I have a field labled "roundup", it is to display the value of retail
price rounded up to the next highest $100.00 mark Example $1440.00
to $1500.00, here is the expression I am using.

controlSource = _
IIf(Price Mod 100 = 0, Price, 100 * Int(Price/100 + 1))


Hope that helps


Tim F
 

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

Back
Top