Is there any function to check whether the entered input is non-numeric or numeric?Thanks!...
OriginalPostID-106178
Discussion posts and replies are publicly visible
This appears to fail when a numeric string is passed against integer and decimal valid types
this would help try it out
a!localVariables( local!b: trim(ri!id), if( a!isNullOrEmpty(tointeger(ri!id)), false, if(int(ri!id) = local!b, true, false) ) )