Hopefully this is an easy one. I have a column of numbers that are 2-3 digits long. I need to format this column so that it inserts a decimal after the first digit on the right all the way through. So this:
105
90
70
130
50
Should look like this:
10.5
9.0
7.0
13.0
5.0
Is there an easy solution for this?
105
90
70
130
50
Should look like this:
10.5
9.0
7.0
13.0
5.0
Is there an easy solution for this?