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

I need to make a proc freq levels table for a variable "type", but only for entries that are ' USA ' under the "place_of_origin" variable.

Right now I'm doing

proc freq data=CarsVROOM nlevels;
tables type;
run;

and it shows me the freq table for all the "Type"s, but I want to see the freq table for all the "Type"s only for ' USA ' objects. What options do I add to the tables statement? Thanks 🙂

1 ACCEPTED SOLUTION

Accepted Solutions
Krueger
Pyrite | Level 9

I think you just need to include the where clause. Try this:

 

proc freq data=CarsVROOM nlevels;
where place_of_origin = 'USA';
tables type;
run;

 

View solution in original post

2 REPLIES 2
Krueger
Pyrite | Level 9

I think you just need to include the where clause. Try this:

 

proc freq data=CarsVROOM nlevels;
where place_of_origin = 'USA';
tables type;
run;

 

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!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 564 views
  • 1 like
  • 2 in conversation