BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DmytroYermak
Lapis Lazuli | Level 10

Hi all,

 

Can you please explain what is the role of minus sign in the code below:

 

proc sql noprint;
  select paramcd, frmt_min, frmt_mean, frmt_sd, count(paramcd)
  into :param_1- ,
       :frmt_min_1- ,
       :frmt_mean_1- ,
       :frmt_sd_1- ,
       :nparams trimmed
  from frmt_final;
quit;

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

It means "create as many numbered macro variables as needed". If the query results in three rows, you'll have param_1, param_2, param_3, and equally three macro variables for the other columns.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

It means "create as many numbered macro variables as needed". If the query results in three rows, you'll have param_1, param_2, param_3, and equally three macro variables for the other columns.

DmytroYermak
Lapis Lazuli | Level 10
Thank you!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2 replies
  • 712 views
  • 1 like
  • 2 in conversation