What are some to convert numeric values stored in a field that is defined as character to a field defined as numeric.
INPUT() function. Choose an appropriate informat.
data want ;
set have;
numvar = input(charvar,10.);
run;
You can't convert the field to numeric.
You can create a new numeric variable that has the same value as the character variable (except that it is translate to a number)
numericvar=charactervar+0;
Not really the best but you'll find it in some folks code is to do arithmetic with it.
numvar = 0 + charactervariable;
This will generate warning messages about conversion of strings to numeric.
Very similar ...
If you have already defined a new variable as numeric, just copy:
length numvar 8;
numvar = charactervariable;
If the character variable takes on unusual values that can't be converted to numeric, you will receive a warning.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.