format numbers

L

lmossolle

Is there anyway to round up to the next highest number using the following?

=Sum([daystoaward]/[awarddays])

Thanks
 
J

John Spencer

The following should round up to the next integer value. If the result is
already an integer then it will not increase the sum

= - Int (- Sum([daystoaward]/[awarddays]))

1.1 --> 2
1 --> 1

Negative numbers will also round by they will round towards zero so you will
get
-5.5 --> -5
--
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 

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