HELP on "left","right","find","len","substitute" functions

S

serene83

Hi, i have a problem here which i need to use "left", "right", "find",
"len" and "substitute" function to solve it.

How do i use left", "right", "find", "len" and "substitute" function to
split these car models into two columns?

Question:

Honda Accord
Toyota Camry
Mitsubishi Galant
BMW 3 Series

Ans:

1st column:
Honda
Toyota
Mtsubishi
BMW

2nd column:
Accord
Camry
Galant
3 Series

Thank you.
 
G

Guest

Use the following formula to obtain the portion to the left of the space

=LEFT(A1,FIND(" ",A1))

and for the right

=RIGHT(A1,LEN(A1)-FIND(" ",A1))
 
R

Ragdyer

Sounds like homework to me.

Will your teacher mark you down since none of the suggestions here used
"substitute"?

Ask for extra credit since the "mid" function was used instead.<g>
 
F

Franz Verga

Nel post *serene83* ha scritto:
Hi, i have a problem here which i need to use "left", "right", "find",
"len" and "substitute" function to solve it.

How do i use left", "right", "find", "len" and "substitute" function
to split these car models into two columns?

Question:

Honda Accord
Toyota Camry
Mitsubishi Galant
BMW 3 Series

Ans:

1st column:
Honda
Toyota
Mtsubishi
BMW

2nd column:
Accord
Camry
Galant
3 Series

Thank you.

If your data are in column A, starting from A1, enter this in B1:

=LEFT(A1,FIND(" ",A1)-1)

and this in C1:

=RIGHT(A1,LEN(A1)-LEN(B1)-1)

select B1:C1 and copy down.

--

Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 
S

serene83

thanks for all the help. This is not a homework, juz something which i
found in a book.
 

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