Answers for "sas dataset grand total"

0

sas dataset grand total

proc summary data=sales nway ;
  var amount ;
  output out= sales_tot (drop=_type_ _freq_) sum= ;
run;
Posted by: Guest on October-20-2021
0

sas dataset grand total

data sales_tot_1 ;
  length region $%length(GRAND TOTAL);
  set sales sales_tot (in=in2);
  if in2 the region='GRAND TOTAL';
run;
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language