-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). data act.talentv2(drop=lastname firstname);
set act.talent;
FullName=lastname||', '||firstname;
proc print data=act.talentv2;
run;
-
Submit the program and view the new variable
FullName .
-
Revise the DATA step to trim trailing blanks from the variable
LastName .
-
Resubmit the step. View the values of
FullName .
Return here and select Next.
|