Roundup Function

G

Guest

Hello ,

I am trying to use a "Roundup" function in an Access report.
I have used this function in excel but it does not seem to be available in
Access.

i.e. 57 / 5 = 11.4 Roundup= 12

The "round" function in Access does not round up, any ideas that do not
involve VB?

Thanks,

Alan.
 
J

John Spencer

How about a little VB?

The following should work to round up positive numbers correctly.

-Int(-[YourNum])

-Int(-(57/5)) will return 12

_
 

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