A family of Microsoft relational database management systems designed for ease of use.
Add the following function into a standard VBA module
Public Function StripAllChars(strString As String) As String
'Return only numeric values from a string
'Source:
Dim lngCtr As Long
Dim intChar As Integer
For lngCtr = 1 To Len(strString)
intChar = Asc(Mid(strString, lngCtr, 1))
If intChar >= 48 And intChar <= 57 Then
StripAllChars = StripAllChars & Chr(intChar)
End If
Next lngCtr
End Function
Then, instead of querying your fields directly, add a new field
HomePhoneNo: StripAllChars([Home Phone])
and Search it.
Do the same for all your other phone number fields.
This is why it can be beneficial to only store the number, and not the formatting for such fields, and then use the Format control property in forms and reports to display them as you please for visualization.