Function NumAddress(x As String) As String
Dim T, N$, exeption
exeption = " rue st "
T = Split(x, " ")
If Val(T(0)) > 0 Then N = T(0)
If IsNumeric(N) Then
If T(1) = "bis" Or Len(T(1)) <= 3 And Not exeption Like "* " & LCase(T(1)) & " *" Then N = N & " " & T(1)
End If
NumAddress = N
End Function
Function suitAddress(x As String) As String
suitAddress = Replace(x, NumAddress(x), "")
End Function