Array...

S

sab

Hi,

In range A1, i have:
name1; name2; name3; name4

Is' it possible to obtain (with a formula) in range B1:B4:
name1
name2
name3
name4

Thanks,
Sabine
 
J

JE McGimpsey

one way:

B1: =LEFT(A1,FIND(";",A1)-1)
B2: =TRIM(MID(A1,FIND(";",A1)+1, FIND("$", SUBSTITUTE(A1,";","$",2)) -
FIND(";",A1)-1))
B3: =TRIM(MID(LEFT(A1, FIND("$", SUBSTITUTE(A1,";","$",3))-1),
FIND("$", SUBSTITUTE(A1,";","$",2))+1,255))
B4: =TRIM(MID(A1, FIND("$", SUBSTITUTE(A1,";","$",3))+1,255))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top