cancel
Showing results for 
Search instead for 
Did you mean: 

How to make a roundup?

Former Member
0 Kudos
176

Hello in my calculated columni have an issue, i can find rounddown() function or round() function but impossible to find a way to make a Roundup() i mean a round sup like :

5,6 -> 6
5,2 -> 6

Is somebody has a solution.

Thank you 🙂

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Yes it is in SQL language. Perfect thank you very much Bartosz!

BJarkowski
Active Contributor
0 Kudos

If that works for you, please close the question and mark the correct answer that other people can benefit as well ! 🙂

Cheers!

BJarkowski
Active Contributor
0 Kudos

I think you are looking for the CEIL function:

select ceil(5.2) from dummy -> 6