I have a spread sheet that I imported from an as400db. some of the fields have up to 9 decimals. When I form mat the fields it looks ok but is there a way to completly trim or reduce the number of decimals???
If you want to actually truncate the value to 2 places...
[tt]
=INT(A1*10^2)/10^2
[/tt]
or to make it a bit more flexible, using Z1 as the cell for the number of places...
[tt]
=INT(A1*10^Z1)/10^Z1
[/tt]
then just change the value in Z1 to whatever number of places you want to see.
Skip, Just traded in my old subtlety... for a NUANCE!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.