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.

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1207 views
  • 0 likes
  • 2 in conversation