V
Vidcapper
I have some music data in the form :
Cell A1 : 'The Vamps - Wild Heart - EP'
Cell A2 : 'Eminem - The Marshall Mathers LP2 (Deluxe)'
Which I'd like split as :
'The Vamps', 'Wild Heart - EP'
'Eminem' , 'The Marshall Mathers LP2 (Deluxe)'
You Me At Six
In B1 I have :
=LEFT(a1,FIND(" - ",a1)-1)
& in C1 :
=TRIM(RIGHT(SUBSTITUTE(a1," - ",REPT(" ",99)),99))
This produces the desired result for the 'Eminem' entry, but for 'The
Vamps' entry I just get
'The Vamps', 'EP' omitting the 'Wild Heart' part. Is there a way of
parsing it which produces the desired result?
TIA
Cell A1 : 'The Vamps - Wild Heart - EP'
Cell A2 : 'Eminem - The Marshall Mathers LP2 (Deluxe)'
Which I'd like split as :
'The Vamps', 'Wild Heart - EP'
'Eminem' , 'The Marshall Mathers LP2 (Deluxe)'
You Me At Six
In B1 I have :
=LEFT(a1,FIND(" - ",a1)-1)
& in C1 :
=TRIM(RIGHT(SUBSTITUTE(a1," - ",REPT(" ",99)),99))
This produces the desired result for the 'Eminem' entry, but for 'The
Vamps' entry I just get
'The Vamps', 'EP' omitting the 'Wild Heart' part. Is there a way of
parsing it which produces the desired result?
TIA