|
Dear SAS gurus,
I would like to check whether the value in a character variable can be
converted to numeric.
Currently I do something like:
var_num = put(var_char, 8.);
if var_num ^= .
This works, but creates a big mess in my log. Surely there must be a
better way?
Best,
Paul
|