Sub test()
Valt = Cells(1, 1)
lt = Len(Valt)
For i = 1 To lt
ch = Asc(Mid(Valt, i, 1))
If ch > 47 And ch < 58 Then
MsgBox (i)
Exit For
End If
Next i
End Sub
Not sure about your region requirements, but try changing All commas to semicolons:
=MIN(FIND({0;1;2;3;4;5;6;7;8;9};A2&"0123456789"))
OR
=MIN(FIND({0;1;2;3;4;5;6;7;8;9};A2&1/17))
See your pictures....
Why you use "&" instead ";" in your formula ???