I created a basic report that is broken up into a couple hundred categories by an ID name. Each category has a list of reports under that ID name that is named at the top. The sum of files under that ID name are counted for at the end of each category. My question is how to include the ID name into the n= statement. is that possible? for ex. the end would read Total count of ID... :
Proc Sort;
BY ID FILE
PROC PRINT DATA=... NOOBS N= 'TOTAL COUNT:'
'FINAL COUNT:';
BY ID;
PAGEBY ID;
SUMBY ID;
RUN;