Sub Essai()
Lig = 4
N = Cells(Lig, 7).Value
Nombre = RechercheNombre(N)
If Nombre <> "" Then
If Nombre >= 1 And Nombre <= 52 Then
Cells(Lig, 8) = "w"
Cells(Lig, 9) = ""
End If
End If
End Sub
Function RechercheNombre(Chaine)
For i = 1 To Len(Chaine)
If IsNumeric(Mid(Chaine, i, 1)) Then
Nombre = Nombre & Mid(Chaine, i, 1)
End If
Nombre = Val(Nombre)
Next i
RechercheNombre = Nombre
End Function