Round up

ceiling x      ceiling[x]

Returns the least integer greater than or equal to boolean or numeric x.

q)ceiling -2.1 0 2.1
-2 0 3
q)ceiling 01b
0 1i