Excel Vba Isalpha

[Solved] Excel Vba Isalpha | Vb - Code Explorer | yomemimo.com
Question : excel vba isalpha

Answered by : daniel-ferry

'VBA function to test if a string contains only letters:
Function IsAlpha(s) As Boolean IsAlpha = Len(s) And Not s Like "*[!a-zA-Z]*"
End Function

Source : http://academy.excelhero.com/ | Last Update : Sun, 30 Aug 20

Answers related to excel vba isalpha

Code Explorer Popular Question For Vb