Formatting 99.997% to 99.99%

L

lawandgrace

If I modify it, it always goes to 100% instead of 99.99%, and I need to show
the actual number of 99.99% (without the 3rd decimal place), not the 100%.

Thanks!
 
F

Fred Smith

There is no format which will do this. You will need a formula, like:
=rounddown(a1,4)

Regards,
Fred
 
K

KC

that is happening because by default the decimal is being rounded UP and not
DOWN

try this

=ROUNDDOWN(B2,4)

-kc
*clikc YES if this helps
 
Top