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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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