Any Equivalent For Mround up in Appsheet?

MRounud(sheet formula) is

=MROUND(253.5,0.25)

I have Column value Needed Based On the Mround Up formula For appsheet

Any Equivalent For Mround up in Appsheet..

 

Thanks in advance

 

Solved Solved
0 8 433
1 ACCEPTED SOLUTION

Almost


@WillowMobileSys wrote:

FLOOR([value] / [factor]) * [factor]


Use ROUND() instead of FLOOR()

ROUND([Value]/[Factor])*[Factor]

 Taking these examples:

SkrOYC_0-1661700959374.jpeg

ROUND(10/3) = ROUND(3.33333) = 3;
3 * 3 = 9

ROUND(-10/-3) = ROUND (3.33333) = 3;
3 * -3 = -9

ROUND(1.3/0.2) = ROUND(6.5) = 7;
7 * 0.2 = 1.4

View solution in original post

8 REPLIES 8
Top Labels in this Space