Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
can anyone help me on this?
i have columns of data which has the format of (something1,something2, something3, others) the string "somthing1", "somthing2", "somthing3" are consistent, and not all may appear at the same time, while the part "others" may vary. I want to extract the "others" part, if the cell has how can i do this in a macro? i donot want to modify the original cell, but will store the "others" in another sheet |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you goto
the top file menu data=text to columns then select what you want, this will do exactly what you are asking Dave |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks any way
i want to do it in macro, not manually that is whenever i want to perform the task, just call the macro all will be done |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I just recorded this Macro and seems to work fine,
I highlited the range I wanted changed and clicked on the macro, and voila, they say the macro recorder will be a big thing someday!!! Sub Macro1() ' ' Macro1 Macro ' Macro recorded 2/28/2006 by Dave ' ' Selection.TextToColumns Destination:=ActiveCell, DataType:=xlDelimited, _ TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _ Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _ :=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5, 1)) End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy and pasting a find all list into another column | Excel Discussion (Misc queries) | |||
How to remove or replace a carriage return character in a cell? | Excel Discussion (Misc queries) | |||
Excel - Find & Replace text in a string | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions |