Formatting 99.997% to 99.99%

  • Thread starter Thread starter lawandgrace
  • Start date Start date
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!
 
There is no format which will do this. You will need a formula, like:
=rounddown(a1,4)

Regards,
Fred
 
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
 
Back
Top