I have tables with decimal numbers and i wnat that there will be maximum 2 digits after the point. e.g the number 4.567 will be 4.67, but the number 2 will stay 2, and the number 5.6 will stay 5.6. How can i do that? I managed to do that there will be only two digits, but the number 2 converted to 2.00 and 5.6 to 5.60…
Share
Format Cells->Number->Custom…and enter “0.##”
The “0” means “always displayed” (so in this case a digit before the decimal point). The “#” means “display if present” (so up to two digits after the decimal point). It’s not quite perfect as “2” will display as “2.”, but I think it’s close as you’re going to get