How would I go about changing all the values in a field with alpha-numerics to remove the dashes (i.e. to change entries like BR-312-8212 to BR3128212)? Thanks!
You can look at the Replace Function. In a module you would put
Fuction myfunction(myval as String) as String
myfunction = Replace(myval,"-",""
End Function
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.