Hey everyone,
I have a UDF that would collect a set of 9 numeric digits.
For instance:
A1 = Hello123456789?/ok
B1 = GetNumber(A1)
UDF result:
B1 = 123456789
Function GetNumber(ByVal S As String) As Variant
Dim X As Long, Num As Variant
For X = 1 To Len(S)
If Mid(S, X, 1) Like...