Is there an equivalent to RoundUp() excel formula?

Hello,

I’m trying to build up some math expressions, but I can only find expressions that take divide operations between two number and Round them to an integer (floor, ceiling). Is there a way to ha a Divide operation between two values and have the result RoundUp the last 2 digits?

(just like RoundUp(10/7,2) = 1.43)

Thank you,
Sorin

Solved Solved
0 6 1,115
1 ACCEPTED SOLUTION

CEILING(100*10/7.2)/100.0 will do that

View solution in original post

6 REPLIES 6

Ceiling(10/7,2) should work, you might need to encapsulate the division operation in its own set of parentheses though.

Nope, it doesn’t work

CEILING(100*10/7.2)/100.0 will do that

Smart

Steve
Platinum 4
Platinum 4

I was lucky, I did have a decimal column part in the formula but really good to know, thank you

Top Labels in this Space