how do I format some text....."abc123" into "abc 123"

P

Pete_UK

Try this, assuming your text is in A1:

=LEFT(A1,3)&" "&RIGHT(A1,3)

Copy down if required.

Hope this helps.

Pete
 
Top