BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
omerzeybek
Obsidian | Level 7

Hi

I am having a little bit problem on my reporting project in EG

I have demographics for ove a 6 milion peope and also i have about 26 segments

i want to create report for every segment including percentage distributions for every individual segment

how ever i am unable to create a reliable quick report tabulates number of individuals fall in specific segment's demographic attributes.

I just printed the report i need attached bellow

Although it seems a easy job i have been frustrated within one way frequencies and table summary nodes

if you could help i would be appriaciate

Thank you very much


2505.jpg
1 ACCEPTED SOLUTION

Accepted Solutions
TomKari
Onyx | Level 15

I think you can also do it using the "point and click" options:

Using Describe | Summary Tables

Put Marital Status, Age, and Segment into Classification Variables, nothing in Analysis Variables

On the Summary Tables layout screen, put Marital Status and Age on the left (row) dimension, not nested. Put Segment into the top (column) dimension.

Under Segment, replace N with RowPctN. I think this will produce what you want.

Tom

View solution in original post

3 REPLIES 3
stat_sas
Ammonite | Level 13

Try this.

proc tabulate data=have;

class segment age martial_status;

keylabel all='Total';

table martial_status all, segment*pctn<martial_status all>='Col %';

table age all, segment*pctn<age all>='Col %';

run;

TomKari
Onyx | Level 15

I think you can also do it using the "point and click" options:

Using Describe | Summary Tables

Put Marital Status, Age, and Segment into Classification Variables, nothing in Analysis Variables

On the Summary Tables layout screen, put Marital Status and Age on the left (row) dimension, not nested. Put Segment into the top (column) dimension.

Under Segment, replace N with RowPctN. I think this will produce what you want.

Tom

omerzeybek
Obsidian | Level 7

Thanks Tom thats what i really need...

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 1396 views
  • 5 likes
  • 3 in conversation