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

Hi,

I would like to save a value from the MEANS procedure to use in a further datastep.

For example

Proc means data=table1 mean ; var Sales ; run ;

If the output was $200, I would like to save the value to use further along in my code, for example:

Proc print data=table1 ; where Sales LE &Sales_Mean ; run ;

Where Sales_Mean was generated from the proc means procedure.

Thanks for your help.

1 ACCEPTED SOLUTION

Accepted Solutions
DangIT
Fluorite | Level 6

SOLVED:

using Proc SQL

PROC SQL NOPRINT ;

SELECT MEAN(Sales)

INTO :meanSales

FROM Table1

; QUIT ;

Proc print data=table1 ; where Sales LE &meanSales; run ;

View solution in original post

1 REPLY 1
DangIT
Fluorite | Level 6

SOLVED:

using Proc SQL

PROC SQL NOPRINT ;

SELECT MEAN(Sales)

INTO :meanSales

FROM Table1

; QUIT ;

Proc print data=table1 ; where Sales LE &meanSales; 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
  • 1 reply
  • 936 views
  • 0 likes
  • 1 in conversation