Hi again. :)
Does anyone know of a simple way to turn integers into formatted strings?
E.G.
1000 = 1,000
And is there any other simple way of cutting off decimals to a certain number of places? It cannot be rounding up or down, because it effects broken units such as inches, feet, etc. when they are modified for a list.
E.G.
8.79823 = 8.79
11.9999 = 11.99
The last conversion would nomally round up to 12, but I don't want that to happen.
Thank you. :rolleyes:
Does anyone know of a simple way to turn integers into formatted strings?
E.G.
1000 = 1,000
And is there any other simple way of cutting off decimals to a certain number of places? It cannot be rounding up or down, because it effects broken units such as inches, feet, etc. when they are modified for a list.
E.G.
8.79823 = 8.79
11.9999 = 11.99
The last conversion would nomally round up to 12, but I don't want that to happen.
Thank you. :rolleyes:
Comment