Urgent

  • Thread starter Thread starter aducutlas
  • Start date Start date
A

aducutlas

Need formula to remove character from a string and display string in
new cell...

e.g

123/adc-123 xyz 123abc123xy
 
Hi
try the following
=SUBSTITUTE(A1,"-","")
A1 stores your sorce text. The above removew the '-' from your text
HTH
Frank
 
Hi Frank



=SUBSTITUTE(SUBSTITUTE(A1,"/",""),"-","")


This is close but I need to remove one more charater...".
 
Back
Top