Basically I have one cell, call it A1, with over 1200 digits in it. All I need to do is put a space between each one so I can eventually use text to columns via delimited to get each individual number in its own cell.
I consider myself a master of excel and this simple thing stumped me and made me angry. Normally I would use a LEFT(A1, 1) and then string concatenate & " " & into it, but with so many digits this doesn't work. I have also tried a replace function with no luck....eventually I was able to solve my problem by using the find and replace and going though and doing
FIND: "1"
REPLACE WITH: "1 "
(note the parentheses are just to show you the space is added)
then...
FIND: "2"
REPLACE WITH: "2 "
all the way until I replaced all 10 digits.
This solved my problem, but I still can't believe how amateur I felt not knowing a quick and easy way to do this....any suggestions ? I'm sure the first answer is going to be so easy I cry at my stupidity....thx
I consider myself a master of excel and this simple thing stumped me and made me angry. Normally I would use a LEFT(A1, 1) and then string concatenate & " " & into it, but with so many digits this doesn't work. I have also tried a replace function with no luck....eventually I was able to solve my problem by using the find and replace and going though and doing
FIND: "1"
REPLACE WITH: "1 "
(note the parentheses are just to show you the space is added)
then...
FIND: "2"
REPLACE WITH: "2 "
all the way until I replaced all 10 digits.
This solved my problem, but I still can't believe how amateur I felt not knowing a quick and easy way to do this....any suggestions ? I'm sure the first answer is going to be so easy I cry at my stupidity....thx