Thread: Is Alaphabetic
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tim Williams Tim Williams is offline
external usenet poster
 
Posts: 1,588
Default Is Alaphabetic

how about

Function IsAlpha(s as string)
IsAlpha = (ucase(s) like [A-Z])
end function

?
Tim

"C. Roenbaugh" wrote in message
oups.com...
I need a function in VBA like "isNumeric" that checks if a string only
contains alaphabetic characters. Would love some help.

Thanks

CR