remove text between [ ]
On Jul 4, 5:07*am, Chad wrote:
Hi
I wanted to remove the brackets and text within them using vba. *In
each cell I have the item;
There [has to be an answer] it is.
Where the result after running the process is ;
There it is.
I have been searching for hours and can't seem to find anything that
specifically gets this done.
Any help or pointers greatly appreciated.
Chad
=LEFT(C16,FIND("[",C16)-1)& RIGHT(C16,LEN(C16)-FIND("]",C16)-1)
|