sas dataset grand total
proc summary data=sales nway ;
var amount ;
output out= sales_tot (drop=_type_ _freq_) sum= ;
run;
sas dataset grand total
proc summary data=sales nway ;
var amount ;
output out= sales_tot (drop=_type_ _freq_) sum= ;
run;
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;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us