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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 271 views
  • 0 likes
  • 2 in conversation