Substitute to remove text within parenthesis

Hello all,

I want to remove text within parentheses. I use substitute formula but it does not work. Can anyone help me?

problem.JPG

0 5 147
5 REPLIES 5

Such expressions can be a bit tricky as slight variation in requirement could cause issues in result but you could try

LEFT([TextString], LEN([TextString])-FIND("(",[TextString])-1)

where the [TextString] contains a string as below you have given

Suvrutt_Gurjar_0-1652171967502.jpeg

 

It does not erase all the text in parentheses in second one. How to fix this?

Captureฟฟฟ.JPG

Can you mention what is the original text for the second one?

Maybe this ?

index(split([Col],"("),1)

 

 

Nice, compact one @Koichi_Tsuji 👍

Top Labels in this Space