on 2018 Mar 23 3:24 PM
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 🙂
Yes it is in SQL language. Perfect thank you very much Bartosz!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you are looking for the CEIL function:
select ceil(5.2) from dummy -> 6
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
76 | |
11 | |
10 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.