Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2395
Align column value to decimal point
posted

Is there a way to align column values on the decimal point? For example, if I have the values 111.8, 22.55, 3.9999 in 3 different rows; is there a way I can align them like this:

111.8

  22.5

    3.9999

 

Not sure if the formatting is going to work here, but basically I want the decimals to be on a vertical line with each other. Is this possible?

 

  • 69832
    Suggested Answer
    Offline posted

    Not really. Most people use a format that includes trailing zeroes so as to normalize the representation of the values. For example, assigning a value of "###.0000" to the column's Format property would result in a display of 111.8000, 22.5000, 3.9999, using the values you listed here.