BookmarkSubscribeRSS Feed
Pixydust12
Calcite | Level 5

I need to create something similar to a demographic table. I'm slowly building it piece by piece, but I'm stuck on one part. The top columns are correct with the race, but I need my age groups on the side (in rows), along with other variables such as gender and injury type etc. Also, how do I remove the "N", just so it can display the count? 

 

Pixydust12_0-1638500555083.png

proc tabulate data=XX;
class Sexname age racename;
table (racename)*(age all);
format age agegrp.;
run;

1 REPLY 1
Reeza
Super User
proc tabulate data=XX;
class Sexname age racename;
table (age all), (racename)*N=‘’;
format age agegrp.;
run;

Do not copy/paste - type it out or it will not work for you.