I need to create a new variable that contains the first and last name from my dataset. The code I have is as follows:
data hw9.combo;
infile "/folders/myfolders/hw9/combo";
input name = firstname + lastname;
run;
I get the following errors when trying to run it:
NOTE: Variable lastname is uninitialized.
ERROR: Physical file does not exist, /folders/myfolders/hw9/combo.
Can anyone help me resolve this? I'm using SAS university edition, which is why I did the file location that way.