BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
always-good
Obsidian | Level 7

Hello,

I have to do the means (proc means) of my data variables. My problem is I want to do means for specific values only that means according to variables ranging from x values to y values and  not to all the variables' value.

Is there a way to do it please?

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Example:

 

proc means data=have;
    where var1>=x and var1<=y;
    /* MORE PROC MEANS STATEMENTS GO HERE */
run;
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Example:

 

proc means data=have;
    where var1>=x and var1<=y;
    /* MORE PROC MEANS STATEMENTS GO HERE */
run;
--
Paige Miller
always-good
Obsidian | Level 7
Thanks a lot!
The code works great.

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!

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