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!
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.
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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.