Greetings,
If I have a string such as the following in cell A1 what code would remove everything outside the speech marks, inclusive of the speech marks?
The Black Eyed Peas : "Meet Me Halfway"
Try this...Greetings,
If I have a string such as the following in cell A1 what code would remove everything outside the speech marks, inclusive of the speech marks?
The Black Eyed Peas : "Meet Me Halfway"
Tweak...Improvement...
1 less function call and a few keystrokes shorter.
=SUBSTITUTE(MID(A2,FIND(": ",A2)+3,50),"""","")