Hello all,
I want to remove text within parentheses. I use substitute formula but it does not work. Can anyone help me?
Hello all,
I want to remove text within parentheses. I use substitute formula but it does not work. Can anyone help me?
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
Can you mention what is the original text for the second one?
Maybe this ?
index(split([Col],â(â),1)
Nice, compact one @Koichi_Tsuji ![]()