Separate in to different columns

SeanLCA

New Member
Joined
Nov 3, 2018
Messages
15
Office Version
  1. 365
Platform
  1. Windows
What is the formula that would separate the following into different columns.

Sport 1Sport 2Sport 3Sport 4Sport 5Sport 6Sport 7
Baseball > Basketball > Football > Soccer > Hockey > Pickleball > Golf



The desire result in each column without including >:

Sport 1Sport 2Sport 3Sport 4Sport 5Sport 6Sport 7
Baseball > Basketball > Football > Soccer > Hockey > Pickleball > GolfBaseballBasketballFootballSoccerHockeyPickleballGolf
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Please change your profile to indicate which version of Excel you are running.

If you're using 365, this might be what you want:

Book1 (version 2).xlsb
ABCDEFGH
1Baseball > Basketball > Football > Soccer > Hockey > Pickleball > GolfBaseballBasketballFootballSoccerHockeyPickleballGolf
Sheet4
Cell Formulas
RangeFormula
B1:H1B1=TEXTSPLIT(A1," > ")
Dynamic array formulas.
 
Upvote 0
Correction
What is the formula that would separate the (Numbers) into different columns.

Sport 1Sport 2Sport 3Sport 4Sport 5Sport 6Sport 7
Baseball (805) > Basketball (705) > Football (605) > Soccer (505)> Hockey (405)> Pickleball (305)> Golf (205)



The desire result in each column without including >:

Sport 1Sport 2Sport 3Sport 4Sport 5Sport 6Sport 7
Baseball (805) > Basketball (705) > Football (605) > Soccer (505)> Hockey (405)> Pickleball (305)> Golf (205)(805)(705)(605)(505)(405)(305)(205)
 
Upvote 0
If you're consistent with your spacing before and after the ">" and inside the parens

Book1 (version 2).xlsb
ABCDEFGH
2Baseball (805) > Basketball (705) > Football (605) > Soccer (505) > Hockey (405) > Pickleball (305) > Golf (205)(805)(705)(605)(505)(405)(305)(205)
Sheet4
Cell Formulas
RangeFormula
B2:H2B2=RIGHT(TEXTSPLIT(A2," > "),5)
Dynamic array formulas.
 
Upvote 0
Solution
If you're consistent with your spacing before and after the ">" and inside the parens

Book1 (version 2).xlsb
ABCDEFGH
2Baseball (805) > Basketball (705) > Football (605) > Soccer (505) > Hockey (405) > Pickleball (305) > Golf (205)(805)(705)(605)(505)(405)(305)(205)
Sheet4
Cell Formulas
RangeFormula
B2:H2B2=RIGHT(TEXTSPLIT(A2," > "),5)
Dynamic array formulas.
Thanks for your help
 
Upvote 0
Glad to help. If that was the solution, please mark it accordingly.
 
Upvote 0

Forum statistics

Threads
1,215,135
Messages
6,123,239
Members
449,093
Latest member
Vincent Khandagale

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