Insert a space every x characters

Solved
lapprenti2 -  
 lapprenti2 -
Hello,
I would like to know if it's possible with a macro to insert a space every 4 characters in a string of text:

FR7613825002000877044273408

the desired result:
FR76 1382 5002 0008 7704 4273 408

for all selected cells

thank you in advance

Configuration: Windows 7 / Internet Explorer 9.0

3 réponses

navigo
 
=LEFT(A1,4)&" "&MID(A1,5,4)&" "&MID(A1,9,4) etc.
3