Vba code to split cells based on parenthesis and spaces before and after parenthesis
I have an excel file that has some cells with several text in parenthesis and outside parenthesis. I would like to split the cells. For example , I have some cells appearing like this
(some text in) parenthesis and (others outside)
I would to split the cells so that the some text in
is in a different cell, parenthesis and
also in a different cell and others outside
also in a different cell. What I have so far only splits what's in parenthesis. Thanks in advance. Here's my code below
I found a pattern that works. (I cheat, and use Replace()
, but it seems to do the trick):
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.