I don't know of a switch or option. You can write a function and use the function in an Group By clause.
Function:
Public Function StringToAsciiValue(strIn As String) As String
Dim i As Integer, strOut As String
For i = 1 To Len(strIn)
strOut = strOut & Asc(Mid(strIn, i, 1))
Next i
StringToAsciiValue = strOut
End Function
-------------------------------------
Query example:
SELECT FieldName
FROM Emps
GROUP BY
FieldName,
StringToAsciiValue([FieldName]); Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.