cancel
Showing results for 
Search instead for 
Did you mean: 

String till start of parens

Former Member
0 Kudos

I have a column which has data like this:

1199 SEIU Benefit Funds (1199SEIU)

I would like to have the data until the (

so I would like to have

1199 SEIU Benefit Funds

I am not sure how to make this in a formula.

Accepted Solutions (1)

Accepted Solutions (1)

former_member292966
Active Contributor
0 Kudos

Split({YourField}, "(" ))[1]

This should fix your error.

Brian

Answers (1)

Answers (1)

ido_millet
Active Contributor

Split({YourField}, "(" )[1]

Former Member
0 Kudos

THis is not compiling I see an extra ( but not sure where to fix.