Formula

M

Marvin

I am tring to create a formula that will divide a number by 2 and then insert
the number to the lowest 10th in the cell Example 65 divieded by 2 +32.5 but
in the cell it would show 30 is this posible Thanks
 
B

Brad

=ROUNDDOWN(32.5,-1) will give you the number 30
=ROUNDDOWN(65/2,-1) will give you the number 30 in your example
 
Top