I would like to round up poll answers, but I can't get it working.

When I try round_up and ceil, I get 10x percents (over 100%, most 101%).

Example values:

33.3333333333 
16.6666666667
50
link|improve this question

19% accept rate
feedback

2 Answers

round(33.3333333333, 2); //result: 33.33
round(16.6666666667, 2); //result: 16.67
round(50, 2); //result: 50
link|improve this answer
+1 but based on what he is using already, he just wants the integer part. – Sabeen Malik Sep 4 '10 at 18:16
You have right, it's working great. – marc Sep 4 '10 at 18:18
My foult, i was using "round up". Thank you very much ;) – marc Sep 4 '10 at 18:19
feedback

Why not just use round()?

it should result in:

33
17
50
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.