https://bugs.documentfoundation.org/show_bug.cgi?id=154797

--- Comment #3 from nobu <[email protected]> ---
(In reply to nobu from comment #2)
> =ROUNDUP(1000000000000001)    -> 1000000000000001
> =ROUNDUP(1000000000000001,0)  -> 1000000000000001
> =ROUNDUP(1000000000000001,-1) -> 1000000000000010
> =ROUNDUP(1000000000000001,-2) -> 1000000000000100
> =ROUNDUP(1000000000000001,-3) -> 1000000000001000
> =ROUNDUP(1000000000000001,-4) -> 1000000000000000  -- ?
> 
> =ROUNDUP(1000000000000005,-4) -> 1000000000010000
> 
> =ROUNDUP(100000000000001,-4) -> 100000000010000

I posted it again by mistake. The following is correct.

=ROUNDUP(1000000000000001)    -> 1000000000000001
=ROUNDUP(1000000000000001;0)  -> 1000000000000001
=ROUNDUP(1000000000000001;-1) -> 1000000000000010
=ROUNDUP(1000000000000001;-2) -> 1000000000000100
=ROUNDUP(1000000000000001;-3) -> 1000000000001000
=ROUNDUP(1000000000000001;-4) -> 1000000000000000  -- ?

=ROUNDUP(1000000000000005;-4) -> 1000000000010000

=ROUNDUP(100000000000001;-4)  -> 100000000010000

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to