Hi,
I am looking for a formula to remove text between parentheses.
For exemple, I would like to have :
Le nord (Chili) > Le nord
Le nord (Soudan) > Le nord
Le sud (Soudan) > Le sud
Thanks in advance for your help !
Hi,
I am looking for a formula to remove text between parentheses.
For exemple, I would like to have :
Le nord (Chili) > Le nord
Le nord (Soudan) > Le nord
Le sud (Soudan) > Le sud
Thanks in advance for your help !
Like this?
Formula…
LEFT(Name, FIND("(", Name) -1)
Great, thanks a lot !
But if I don’t have any parentheses, there is no more text …
But if I don’t have any parentheses, there is no more text …
A slight modification takes care of that:
IF(FIND("(", Name), LEFT(Name, FIND("(", Name) -1), Name)
EDIT: Removed extra parentheses.
A slight modification takes care of that:
IF(FIND("(", Name), LEFT(Name, FIND("(", Name) -1), Name)
EDIT: Removed extra parentheses.
Thanks for your help but it seems that something is missing…
IF(FIND("(", Nom complet)), LEFT(Nom complet, FIND("(", Nom complet) -1), Nom complet))
Thanks for your help but it seems that something is missing…
IF(FIND("(", Nom complet)), LEFT(Nom complet, FIND("(", Nom complet) -1), Nom complet))
Two things…
With these fixes in place, your formula should be:
IF(FIND("(", {Nom complet}), LEFT({Nom complet}, FIND("(", {Nom complet}) -1), {Nom complet})
Two things…
With these fixes in place, your formula should be:
IF(FIND("(", {Nom complet}), LEFT({Nom complet}, FIND("(", {Nom complet}) -1), {Nom complet})
Perfect, thanks a lot for your help !!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.