Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hello i have a file that was pre generated for me. it contains many
colums and rows. a certian colum constains a string of 6 digits, like 272829 and 359514 and so on. I need those split up into pairs, either by comma or something else so i can do a find and replace. so it could look like 27,28,29 and 35,95,14. Any suggestions for how i can automate it. I regularaly get theses lists and they contain 1200+ rows. it takes me hours. thanks for your help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming your numbers are in column A, put this formula in a helper column
and copy down......... =LEFT(A1,2)&","&MID(A1,3,2)&","&RIGHT(A1,2) Vaya con Dios, Chuck, CABGx3 " wrote: hello i have a file that was pre generated for me. it contains many colums and rows. a certian colum constains a string of 6 digits, like 272829 and 359514 and so on. I need those split up into pairs, either by comma or something else so i can do a find and replace. so it could look like 27,28,29 and 35,95,14. Any suggestions for how i can automate it. I regularaly get theses lists and they contain 1200+ rows. it takes me hours. thanks for your help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If A1 contains 123456 then =LEFT(A1,2) & "," & MID(A1,3,2) & "," & RIGHT(A1,2)
will display: 12,34,56 " wrote: hello i have a file that was pre generated for me. it contains many colums and rows. a certian colum constains a string of 6 digits, like 272829 and 359514 and so on. I need those split up into pairs, either by comma or something else so i can do a find and replace. so it could look like 27,28,29 and 35,95,14. Any suggestions for how i can automate it. I regularaly get theses lists and they contain 1200+ rows. it takes me hours. thanks for your help. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another way
=TEXT(A1,"##"",""##"",""##") copy down the formula, copy the help range and paste special as values in place delete the import -- Regards, Peo Sjoblom http://nwexcelsolutions.com wrote in message oups.com... hello i have a file that was pre generated for me. it contains many colums and rows. a certian colum constains a string of 6 digits, like 272829 and 359514 and so on. I need those split up into pairs, either by comma or something else so i can do a find and replace. so it could look like 27,28,29 and 35,95,14. Any suggestions for how i can automate it. I regularaly get theses lists and they contain 1200+ rows. it takes me hours. thanks for your help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove macros from spreadsheet | Excel Discussion (Misc queries) | |||
Deleting Macros | Excel Worksheet Functions | |||
Transferring toolbars and macros to other computers | Excel Discussion (Misc queries) | |||
The available macros list in XL; how to suppress filename from showing | Excel Discussion (Misc queries) | |||
Macros disappear after a file is imported | Excel Discussion (Misc queries) |