Sas Version 9.0 -
/* Use PROC MEANS with ODS to capture statistics */ ods output summary = sales_stats; proc means data=sales_data sum mean nway; class Region Product; var Units Revenue; output out=summary_data sum(Units Revenue)=TotalUnits TotalRevenue mean(Units Revenue)=AvgUnits AvgRevenue; run; ods output close;
Version 9.0 increased the limit for numeric and character format names to 32 and 31 characters respectively, moving past the traditional 8-byte limit. Sas Version 9.0