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 ;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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