Hi All,
I am currently starter in using the SAS Proc report procedure, Could you please look in the below note and help me out on what exactly it issue is:
My data:
data sample:
input flightid $ Expenses;
datalines;
IA03400 89155
;
run;
My proc report code is as below:
proc report data=sample.expenses nowd;
column flightid expenses abh;
define abh / computed ;
compute abh;
abh=expenses*100;
endcomp;
run;
With the above code I am having a note in the log as "Variable expenses is uninitialized."
Is this something that we cannot refer the variable which is already existing in the dataset for compute.
Thank you