Rounding Numbers

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

Guest

How do I establish and control my own rounding rules so that, for example
numbers round up from .3 instead of the normal rule?

Any ideas will be appreciated
 
On Mon, 18 Apr 2005 10:38:04 -0700, "jack aubrey" <jack
How do I establish and control my own rounding rules so that, for example
numbers round up from .3 instead of the normal rule?

Any ideas will be appreciated

It depends on perhaps more data than you have provided. But something like:

=INT(A1)+(MOD(A1,1)>=0.3)

might work for you for positive numbers.

I don't know what you want for negative numbers, though.


--ron
 

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