I am trying to convert a character variable to numeric
I have a column of data with the following attributes:
Data Set Name: woleaim1
Variable: age
Type: Char
Len: 3
Format: $3.
Informat: $3.
These data are formatted as character and I want to convert it to numeric. I tried the following command
data woleaim1;
age_num = input(age, $3.);
run;
This is the error message below:
NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
588:23
NOTE: Variable age is uninitialized.
NOTE: The data set WORK.WOLEAIM1 has 1 observations and 2 variables.
Thanks!
data have;
input age $;
cards;
12
15
43
;
data want;
set have ;
newage=input(age,8.);
run;
data have;
input age $;
cards;
12
15
43
;
data want;
set have ;
newage=input(age,8.);
run;
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 save with the early bird rate—just $795!
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.