Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet set up like below
A 1 601,'1' 2 60219,'1' 3 60220,'2' is there a way of getting rid of the punctuation and seperating the numbers e.g in cell A1 at the moment i have 601,'1' i would like in cell A1 601 then in cell A2 1 and so on for A2, A3 etc. Is there a way to do this for every cell as there are about 1000 cells set like this or will i have to do it mannually for every cell Hopefully this makes sense Thanx in advance |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try Text to Columns with a Delimiter of comma (,) and a Text qualifier of
quote (') Regards, Fred "cufc1210" wrote in message ... I have a spreadsheet set up like below A 1 601,'1' 2 60219,'1' 3 60220,'2' is there a way of getting rid of the punctuation and seperating the numbers e.g in cell A1 at the moment i have 601,'1' i would like in cell A1 601 then in cell A2 1 and so on for A2, A3 etc. Is there a way to do this for every cell as there are about 1000 cells set like this or will i have to do it mannually for every cell Hopefully this makes sense Thanx in advance |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Paste this formula in B1
=LEFT(A1,FIND(",",A1)-1) This will get you the 601 Copy the B1 cell and paste it to the remaining cells of B Column depends on A Column Data. Paste this formula in C1 =SUBSTITUTE(RIGHT(A1,LEN(A1)-FIND(",",A1)),"'","") This will get you the 1. Copy the C1 cell and paste it to the remaining cells of C Column depends on A Column Data. Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "cufc1210" wrote: I have a spreadsheet set up like below A 1 601,'1' 2 60219,'1' 3 60220,'2' is there a way of getting rid of the punctuation and seperating the numbers e.g in cell A1 at the moment i have 601,'1' i would like in cell A1 601 then in cell A2 1 and so on for A2, A3 etc. Is there a way to do this for every cell as there are about 1000 cells set like this or will i have to do it mannually for every cell Hopefully this makes sense Thanx in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing Options | Excel Discussion (Misc queries) | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing | Excel Discussion (Misc queries) | |||
Populate a cell if values in cell 1 and cell 2 match cell 3 and 4 | Excel Worksheet Functions | |||
How can I make a blank cell in a formula cell with a range of cell | Excel Discussion (Misc queries) | |||
How to create/run "cell A equals Cell B put Cell C info in Cell D | Excel Discussion (Misc queries) |