how do I remove unwanted characters within a text string.

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

I have parantheses appearing randomally in my results and want to remove them
from results. Is there a function which would do this.
 
You substitute them with nothing, as in:
=Substitute(a1,"(","")

You can nest this command if you want to do more than one character at a
time:
=substitute(substitute(a1,"(",""),")","")

Regards,
Fred
 
Is there any chance that the ()'s mean that the results (numbers) should be
negative?

Could it be a formatting change instead?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top