Answers for "excel vba check if string entirely alpha"

VBA
2

excel vba check if string entirely alpha

'VBA function to check if string is ENTIRELY alpha:

Function IsAlpha(s) As Boolean
    IsAlpha = Len(s) And Not s Like "*[!a-zA-Z]*"
End Function
Posted by: Guest on April-30-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language