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

Hello, this is my code and it produces the graph below.


Proc tabulate data=sample;
class term type;
table (Type=" ") (all="Total Undergraduate - Campus"),(term="Headcount")/misstext = "0";
keylabel n=" ";
format type $type. term $terms.;
run;

 

 Headcount
Fall 2015Spring 2016Summer 20162015
Adult Degree120130114118
RN45323441
Traditional Undergraduate200181192212
Total Undergraduate - Campus365343340371

 

    
    
    
    

 

My data is listed as:

 

Data Fall2015;
input Term $ Cr_Att Type $;
datalines;
15FALL   3   RN
15FALL   12   TU

;

run;

 

I was wondering if there is a way to create a row category of all zeros for a variable (Type ="GS") that does not in my dataset.

Below is an example

 

 Headcount
Fall 2015Spring 2016Summer 20162015
Adult Degree120130114118
Grad students0000
RN45323441
Traditional Undergraduate200181192212
Total Undergraduate - Campus365343340371
1 ACCEPTED SOLUTION

Accepted Solutions
FriedEgg
SAS Employee
proc format;
value $gndr
'F' = 'Female'
'M' = 'Male'
'O' = 'Other';
run;

proc tabulate data=sashelp.class;
class sex / preloadfmt;
table sex/ printmiss misstext='0';
format sex $gndr.;
run;

View solution in original post

3 REPLIES 3
ballardw
Super User

Create a format to associate with the class variable with all of the values which it looks like you may have, use the PRELOADFMT option on class statement.

 

This may do it:

Proc tabulate data=sample;
   class term ;
   class type/preloadfmt order=data  ;
   table (Type=" ") (all="Total Undergraduate - Campus"),(term="Headcount")/ printmiss misstext = "0";
   keylabel n=" ";
   format type $type. term $terms.;
run;
FriedEgg
SAS Employee
proc format;
value $gndr
'F' = 'Female'
'M' = 'Male'
'O' = 'Other';
run;

proc tabulate data=sashelp.class;
class sex / preloadfmt;
table sex/ printmiss misstext='0';
format sex $gndr.;
run;
Bootler
Fluorite | Level 6

Thanks I already had a format in place, so all i did was add the preloadfmt and printmiss options.

 

Proc tabulate data=sample;
class term type/preloadfmt;
table (Type=" ") (all="Total Undergraduate - Campus"),(term="Headcount")/ printmiss misstext = "0";
keylabel n=" ";
format type $type. term $terms.;
run;

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

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
  • 3 replies
  • 2661 views
  • 2 likes
  • 3 in conversation