Shouldn't you have an OUTPUT statement where you can specify the dataset name using the OUT=. proc transreg data=TEMP outtest=TEMPb ss2 cli; model boxcox(variable)=identity (pig); output out=tempnorm ; run; quit ;
... View more
How about this:
[pre]
proc sql;
create table total as
select name,sum(weight,height) as sub_sum,sum(calculated sub_sum) as grand_sum
from sashelp.class
;
quit;
[/pre]
Ksharp
... View more