SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
sconn
Calcite | Level 5

proc sort data=Final
out=Final3;
by state;
proc print data=final3;
var id name date manner_of_death armed age gender race city state flee body_camera;
where state in ('MA', 'CT', 'NH', 'VT', 'ME', 'RI');

sum 
by state;
pageby state;
run;

 

So, I am trying to get count totals on the bottom of my tables for each page (attached) of the amount of records there. I do not want to sum any number...how do I do that??


undefined
5 REPLIES 5
Cynthia_sas
SAS Super FREQ
Hi:
I'm not exactly sure what you want, but you can try the N option on your PROC PRINT statement:
proc print data=final3 n;

cynthia
sconn
Calcite | Level 5

I was looking for a summary for a total number on each state. If you look at my attachment where the n= is I want an area saying 'Total Number of' with the count of records for that page.


undefined
Reeza
Super User

SUMLABEL on the PROC PRINT statement. 

 

The documentation has an example of this implementation for PROC PRINT. 

 

http://support.sas.com/documentation/cdl/en/proc/69850/HTML/default/viewer.htm#p0f022tve3mt0tn162itr...

 

PROC PRINT has SUM or SUMBY statements,  but you seem to have SUM BY(space). Check the log to see if SAS is correcting this for you, but it's good to be explicit in your syntax. 

Reeza
Super User

And if you don't have a record you want to SUM add a dummy variable that has a value of 1 to each record and use that but don't display it. 

I think that would work, but haven't tested it. 

Cynthia_sas
SAS Super FREQ
Dummy variable would not work for PROC PRINT, but would work with PROC REPORT.

cynthia

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 7330 views
  • 1 like
  • 3 in conversation