Forum Discussion
Brian Jarvis
Jan 05, 2018Copper Contributor
Find and replace? Delete some characters but leave others?
Hello, All!
I'm trying to do a find & replace that would turn this:
someText(25)
into:
25
The 25 could be any number value. Basically, I want to delete "someText(" and...
Kenneth Reyes
Jan 05, 2018Copper Contributor
Hi Brian,
can you try this one?
=REPLACE(REPLACE(A1,1,FIND("(",A1),""),FIND(")",REPLACE(A1,1,FIND("(",A1),"")),100,"")
Thanks,
kenkie