IsNumeric() does the same job only the other way round, i.e. :

IsNumeric(53) returns true

IsNumeric("53") returns true

IsNumeric("53a") returns false



--

AS