A
Albert S.
Hello,
I need to create a query that finds all the ascii characters from 192 to 255
and finds some others like 140, 158 & 159. I looked for a similar question in
the forums and didn't find anything.
Here is what I tried:
Public Function FindChars(textIn As String) As String
Dim strNameIn As String
strNameIn = Nz(textIn, "")
If InStr(1, strNameIn, Chr(192)-Chr(255)) > 0 Then
Debug.Print strNameIn
End If
End Function
Of course, this doesn't work. I tried a number of other variations also.
Thanks for any assistance.
I need to create a query that finds all the ascii characters from 192 to 255
and finds some others like 140, 158 & 159. I looked for a similar question in
the forums and didn't find anything.
Here is what I tried:
Public Function FindChars(textIn As String) As String
Dim strNameIn As String
strNameIn = Nz(textIn, "")
If InStr(1, strNameIn, Chr(192)-Chr(255)) > 0 Then
Debug.Print strNameIn
End If
End Function
Of course, this doesn't work. I tried a number of other variations also.
Thanks for any assistance.