Hi there,
I have an issue with a column in my query where I want to remove special characters. I have created the following function to use now and other times also.
Public Function con2(DESCR As String) As String
Special = ("[")
con2 = Replace(DESCR, Special, " ")
End Function
The only problem I have is that there are a few different special characters in the column and I only seem to be able to remove one special character.
Can anyone help?
Thanks
I have an issue with a column in my query where I want to remove special characters. I have created the following function to use now and other times also.
Public Function con2(DESCR As String) As String
Special = ("[")
con2 = Replace(DESCR, Special, " ")
End Function
The only problem I have is that there are a few different special characters in the column and I only seem to be able to remove one special character.
Can anyone help?
Thanks