Re: $$Excel-Macros$$ Round the decimal part of the numbers .5 or 1

2011-03-25 Thread Rajesh K R
Hi, Thanks for the formula, sorry for late reply, Regards Rajesh Kainikkara On 3/18/11, STDEV(i) setiyowati.d...@gmail.com wrote: =INT(I3)+CHOOSE(MATCH(I3-INT(I3),{0,0.32999,0.82999},1),0,0.5,1) or

$$Excel-Macros$$ Round the decimal part of the numbers .5 or 1

2011-03-18 Thread Rajesh K R
Hi Experts I want to round the value 16.33 as 16.5 and 16.83 as 17 how can I do it with a formula. Regards Rajesh kainikkara -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and

Re: $$Excel-Macros$$ Round the decimal part of the numbers .5 or 1

2011-03-18 Thread STDEV(i)
=INT(I3)+CHOOSE(MATCH(I3-INT(I3),{0,0.32999,0.82999},1),0,0.5,1) or =IF(ROUND(MOD(I3,1),2)=0.83,ROUNDUP(I3,0),IF(ROUND(MOD(I3,1),2)=0.33,TRUNC(I3)+0.5,TRUNC(I3))) and more.. On Fri, Mar 18, 2011 at 10:42 PM, Rajesh K R rajeshkainikk...@gmail.comwrote: I want to round the value 16.33 as 16.5