Generating Column Totals
Overview
General form, SUM statement:
SUM variable(s);
where variable(s) is one or
more numeric variable names, separated by blanks. |
proc print data=clinic.insure; var name policy balancedue; where pctinsured < 100; sum balancedue; run;
Requesting Subtotals ...
Get SAS Certification Prep Guide: Base Programming for SAS 9, Third Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.