[TABLE="width: 500"]
<tbody>[TR]
[TD]Sentence[/TD]
[TD]Extracted Words[/TD]
[/TR]
[TR]
[TD]I want this word (Michael) and this other word (Jordan) extract[/TD]
[TD](Michael) (Jordan)[/TD]
[/TR]
[TR]
[TD]I want this (Lebron) as well as (Kobe) and finally (Curry)[/TD]
[TD](Lebron) (Kobe) (Curry)[/TD]
[/TR]
[TR]
[TD]Simple (NBA)[/TD]
[TD](NBA)[/TD]
[/TR]
</tbody>[/TABLE]
I'm not sure how to do something like this. The best i could do was just one 1 word using this
=TRIM(LEFT(SUBSTITUTE(MID(A1,FIND("(",A1),LEN(A1))," ",REPT(" ",200)),200))
<tbody>[TR]
[TD]Sentence[/TD]
[TD]Extracted Words[/TD]
[/TR]
[TR]
[TD]I want this word (Michael) and this other word (Jordan) extract[/TD]
[TD](Michael) (Jordan)[/TD]
[/TR]
[TR]
[TD]I want this (Lebron) as well as (Kobe) and finally (Curry)[/TD]
[TD](Lebron) (Kobe) (Curry)[/TD]
[/TR]
[TR]
[TD]Simple (NBA)[/TD]
[TD](NBA)[/TD]
[/TR]
</tbody>[/TABLE]
I'm not sure how to do something like this. The best i could do was just one 1 word using this
=TRIM(LEFT(SUBSTITUTE(MID(A1,FIND("(",A1),LEN(A1))," ",REPT(" ",200)),200))