hi all how to separate a string:

jamiguel77

Active Member
Joined
Feb 14, 2006
Messages
378
Office Version
  1. 2016
  2. 2010
  3. 2007
Platform
  1. Windows
  2. Web
32443001[[[F\\Maria del Mar/Superior terminada,,15634311\Casado>Azul--S/ 10,133.00


i need separate, resultant:


[[[
\\
/
,,
\
>
--


32443001 F Maria del Mar Superior terminada 15634311 Casado Azul 10,133.00


any advice? thanks
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Can you please post both your text & expected result using the XL2BB add-in
 
Upvote 0
this is the text:

Col 1Col 2Col 3Col 4Col 5Col 6Col 7Col 8
32443001[[[F\\Maria del Mar/Superior terminada,,15634311\Casado>Azul--10,133.0032443001FMaria del MarSuperior terminada15634311CasadoAzul10,133.00


ned use extract? or exist other way?
thanks
 
Upvote 0
Ok, how about
+Fluff 1.xlsm
ABCDEFGHI
1Col 1Col 2Col 3Col 4Col 5Col 6Col 7Col 8
232443001[[[F\\Maria del Mar/Superior terminada,,15634311\Casado>Azul--10,133.0032443001FMaria del MarSuperior terminada15634311CasadoAzul10,133.00
Lists
Cell Formulas
RangeFormula
B2B2=LEFT(A2,FIND("[",A2)-1)
C2C2=MID(A2,FIND("[[[",A2)+3,1)
D2D2=REPLACE(REPLACE(A2,FIND("/",A2),100,""),1,FIND("\\",A2)+1,"")
E2E2=REPLACE(REPLACE(A2,FIND(",,",A2),100,""),1,FIND("/",A2),"")
F2F2=REPLACE(REPLACE(A2,FIND("\",A2,FIND("\\",A2)+2),100,""),1,FIND(",,",A2)+1,"")
G2G2=REPLACE(REPLACE(A2,FIND(">",A2),100,""),1,FIND("\",A2,FIND("\\",A2)+2),"")
H2H2=REPLACE(REPLACE(A2,FIND("--",A2),100,""),1,FIND(">",A2),"")
I2I2=MID(A2,FIND("--",A2)+2,100)
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,772
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top