S
Salman Saeed
Kindly tell me that how can we round the numeric value?
Example: 1.2 = 1.5, 1.7 = 2.0
Example: 1.2 = 1.5, 1.7 = 2.0
Salman Saeed said:Kindly tell me that how can we round the numeric value?
Example: 1.2 = 1.5, 1.7 = 2.0
Kindly tell me that how can we round the numeric value?
Example: 1.2 = 1.5, 1.7 = 2.0
Stan Brown said:Mon, 26 Apr 2010 02:59:01 -0700 from =?Utf-8?B?U2FsbWFuIFNhZWVk?= <=?
Utf-8?B?U2FsbWFuIFNhZWVk?=>:
I don't know what that is, but it's not rounding. If you're rounding
to the nearest whole, 1.2 would round to .0 not 1.5. Even if you are
rounding to the nearest half, 1.7 would round to 1.5.
JLatham said: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).
Bernard Liengme said:I think you need =ROUND(A2/0.5,0)*0.5 [....]
number =CEILING(A2,0.5) =MROUND(A2,0.5) =ROUND(A2/0.5,0)*0.5 [....]
1.7 2 1.5 1.5