I need to replace the - (dash) char in a string. Is there a function to do this ???<br>an example of the string is<br><br>377-44-2447<br><br>I need to replace the dashes with a space character.<br><br>Thanks
If you do not have a Replace function then just create an update query.<br><br>Set the Update To row for the field you want to replace to this:<br>left(fld,3) & " " & mid(fld,5,2) & " " & right(fld,4)<br><br>where fld=yourfieldname <br>there is a space between the quotes<br>be sure to make a copy of your original table first in case you mistype something in the update query<br><br>I hope this helps<br><br>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.