OK, wait a minute. I was reading left as right (doh)
Are these numbers actually numbers, or are they text? the leading zeros are a little strange . . .
Solution - a little complex, but you'll get there.
- assuming those numbers are in column a;
col b: =len(a1)
that will tell you how long the number is. So you'll get 5 for the first one.
col c: =left(a1,3)
Will give you the first 3 numbers.
col d: =right(a1,(b1-3))
Will return the remaining numbers.
col e: =concatenate(c1,".",d1)
That will work.
Watch those leading zeros though.