Values to the Left and Right of Characters

joes2580

New Member
Joined
Feb 18, 2015
Messages
36
Is there a formula I can use that will help this problem?


For example I have parts and descriptions separated by a "/"

but;

Within the part description there are other "/" and part of the desc. Like the size.. 1/4 in.

11SMPPAZ0110050 / #4 X 1/2 PAN HD PHIL SMS ZINC

is an example.

What I want to tell excel is anything to the Left of the "/" I want in the cell to the left and anything on the description side, I want in another cell.



so Cell A1 would be "11SMPPAZ0110050"

Cell B1 would be "#4 X 1/2 PAN HD PHIL SMS ZINC"


Thanks.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Assuming your data is in C1:

In A1:

=LEFT(C1,FIND("/",C1)-2)

In B1:

=MID(C1,FIND("/",C1)+2,LEN(C1))
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,377
Members
448,955
Latest member
BatCoder

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