Reformatting a number

B

Brian

Howdy All,

I need to format some numbers for printing.

The number are 10 digit in column A.

Example: 2468513457

I need it to look like this:

2468 51 34 57

Thanks,
Brian
 
B

Brian

Thanks Anne.

Just realized that the numbers are stored as text in order to get leading
zeroes.

Any ideas on how to format the text?
 
R

Roger Govier

Hi Brian

Anne's solution will hold the leading zero, so it shouldn't be a problem.

Alternatively you could use a formula in another column
=TEXT(A1,"0000 00 00 00")
Copy down the range.
Copy the whole of this new column, move cursor to A1 and Paste Special>Values



Regards

Roger Govier
 
Top