Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have text stings comprised of twenty characters, eg. 89014104201060525494
I want to add four spaces between every fourth character, eg. 8901 4104 2010 6052 5494. How can I format a cell to do this in Excel? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm not convinced you can do it by formatting, but you could use a helper
column, along the lines of =LEFT(A1,4)&" "&MID(A1,5,4)&" "&MID(A1,9,4)&" "&MID(A1,13,4)&" "&RIGHT(A1,4) -- David Biddulph "GenaroJP" wrote in message ... I have text stings comprised of twenty characters, eg. 89014104201060525494 I want to add four spaces between every fourth character, eg. 8901 4104 2010 6052 5494. How can I format a cell to do this in Excel? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I insert content of a2 into text string in b2 and so on? | Excel Worksheet Functions | |||
Find & Replace text format | Excel Discussion (Misc queries) | |||
Excel -find records which DO NOT contain a particular text string | Excel Discussion (Misc queries) | |||
How to import a text file to Excel treating all input content are in string. | Excel Discussion (Misc queries) | |||
Cells and and spaces after a string of text | Excel Worksheet Functions |