View Single Post
  #8  
Old April 26th, 2010, 07:57 PM posted to microsoft.public.excel.newusers
Joe User[_2_]
external usenet poster
 
Posts: 757
Default How to round the numeric value?

"JLatham" wrote:
look at =MROUND(1.2,0.5)
Since MROUND() rounds up


I don't think so.

the effect in this case is the same as
CIELING(1.2,0.5).


I don't think so.

MROUND(1.2,0.5) is 1, whereas CEILING(1.2,0.5) is 1.5.

MROUND rounds; CEILING rounds up. Since the latter provides the result that
Saeed requested (based on his two examples), CEILING is the correct function
to use.

Of course, that begs the questions of whether the two examples sufficiently
demonstrate the kind of rounding that Saeed really wants, and whether his two
examples correctly reflect what he wants. I would like to have seen more
examples, notably 1.1 and 1.6.


----- original message -----

"JLatham" wrote:
In addition to what ozgrid.com provided (which will round UP to the next
nearest .5 boundary), look at
=MROUND(1.2,0.5)
Since MROUND() rounds up,the effect in this case is the same as
CIELING(1.2,0.5). Plus, MROUND() requires that the Analysis ToolPak add-in
be active/installed.

Just another alternative. You can also look at FLOOR() if you need to round
DOWN.

"Salman Saeed" wrote:

Kindly tell me that how can we round the numeric value?
Example: 1.2 = 1.5, 1.7 = 2.0