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

I'm still learning SAS and I'm slightly confused once again.

 

I basically have a table and I just want to see the freq distribution of a few variable totals.

 

Sample data:

data have;
	input zip $ branch $ box1_99 box100_199 box199_200;

	datalines;
	501 52--- 1 1 0
	501 81--- 2 0 0
	501 99--- 1 1 6
	101 22--- 2 10 30
	101 23--- 48 24 60
	101 31--- 40 20 50
	101 42--- 56 36 70
	;
run;

proc print;
run;

And from the sample data, this is the output I'd like to see:

Column Totals.png

 

Bonus question: Should I want to see the output for only a specific zip, how should the code be revised?

 

Any help in the right direction would be greatly appreciated.

 

Regards,

Tony

1 ACCEPTED SOLUTION

Accepted Solutions
Tony5
Fluorite | Level 6

Oops. I found the answer just as I was reading more.

 

For the benefit of future newbies like me...

 

proc means sum maxdec=0;
*** where zip=101;
var box1_99 box100_199 box199_200;
run;

View solution in original post

1 REPLY 1
Tony5
Fluorite | Level 6

Oops. I found the answer just as I was reading more.

 

For the benefit of future newbies like me...

 

proc means sum maxdec=0;
*** where zip=101;
var box1_99 box100_199 box199_200;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 605 views
  • 0 likes
  • 1 in conversation