removing first word from a string

merryperson

Board Regular
Joined
Apr 27, 2005
Messages
72
I wish to catalogue my albums but when they are in excel they are shown by the track number first
06 Killer Queen
02 Spirit in the sky
96 life on mars
Some are even shown as
1-01 sweet Love
2-02 Strut your funky stuff
I wish to remove the fist word in the string and report just the song title without the track number
ie killer Queen
Spirit in the Sky

Anybody help please
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try something like

=IF(CODE(A1) < 65, TRIM(MID(SUBSTITUTE(A1, " ", REPT(" ",255), 1), 255, 255)), TRIM(A1))
 
Last edited:
Upvote 0
Try

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

(Good music choice :) )
 
Last edited:
Upvote 0
Assuming there are never any spaces around the dashes within the first numbers, and assuming no song title is more than 99 characters long, this formula should work for you...

=MID(A1,FIND(" ",A1)+1,99)
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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