This question is in reference to
thread376-1455435 which is now a closed thread.
This code worked before
Data TABLEA;
set Table2;
hcode = put(input(hcode,6.),z6.);
lcode= put(input(lcode,6.),z6.);
End;
run;
However, now the code is a numeric field. I thought I followed instructions from Chris but apparently, I did not follow the instructions correctly. I took the INPUT part out, but it failed. What did I do wrong?
data TABLEA;
set Table2;
hcode = put(hcode,6.),z6.);
lcode= put(lscode,6.),z6.);
End;
run;
Thank you.
DonaZ
thread376-1455435 which is now a closed thread.
This code worked before
Data TABLEA;
set Table2;
hcode = put(input(hcode,6.),z6.);
lcode= put(input(lcode,6.),z6.);
End;
run;
However, now the code is a numeric field. I thought I followed instructions from Chris but apparently, I did not follow the instructions correctly. I took the INPUT part out, but it failed. What did I do wrong?
data TABLEA;
set Table2;
hcode = put(hcode,6.),z6.);
lcode= put(lscode,6.),z6.);
End;
run;
Thank you.
DonaZ