I'm trying to remove all of the carriage returns in excel but keep running into a problem where some still seem to exist. I've tried:
=SUBSTITUTE(A1,CHAR(13),"")
=SUBSTITUTE(SUBSTITUTE(A1,CHAR(13),""),"<br>","")
=SUBSTITUTE(SUBSTITUTE(A1,CHAR(13),""),CHAR(10),"")
But I am still getting some carriage returns. Any ideas on how to remove them all?
thanks
=SUBSTITUTE(A1,CHAR(13),"")
=SUBSTITUTE(SUBSTITUTE(A1,CHAR(13),""),"<br>","")
=SUBSTITUTE(SUBSTITUTE(A1,CHAR(13),""),CHAR(10),"")
But I am still getting some carriage returns. Any ideas on how to remove them all?
thanks