You may get solutions from others, that depend on using a function that a database vendor supports. Be that an 'IsNumeric' type of function or a data type conversion function which can return a specific value when a conversion would fail.
There isn't a generic built in function in CA at this time, but you can use the built in regex capability.
For example, where a definition of a number might be is optional leading sign, followed by one or more digits.
case when occurrences_regex ( '[+-]?[0-9]+\b' , [REGEX].[CASE].[C1] ) > 0 then 'looks like a number' else 'has some non-numeric stuff in it' end
------------------------------
NIGEL CAMPBELL
------------------------------