When you run the task
and the Same name? check box is not selected,
the resulting data set includes the existing character variable and
a new numeric variable called variable-name_new.
To view this result:
-
Return to the
DATA tab
in the user interface and clear the
Same name? check
box.
Here is the updated
user interface:
The generated SAS code
appears on the Code tab.
data WORK.TEST;
set WORK.CHARACTER;
Age_new=input(Age, BEST10.);
run;
-
Click

to run the task.
The results appear on
the OUTPUT DATA tab. The resulting output
data set includes all of the variables from the input data set and
a new variable called variable-name_new.
In this example, the results contain both the Age and Age_new variables.
Age is a character variable, and Age_new is a numeric variable.
You can now close the
task.