How do i assign the SINGLE output of an step to a variable inside a macro?
E.G: There is only one distinct value of a character variable in a dataset. I want to assign that Distinct Value to 't';
Please Help, How Can We Do It?
It's like i want:
%Let t = %Eval(Proc Sql; Select Distinct(XYZ) From Prq; Quit;)
proc sql;
Select Distinct(XYZ) into : T
From Prq;
Quit;
%put &T ;
proc sql;
Select Distinct(XYZ) into : T
From Prq;
Quit;
%put &T ;
SQL will do that for you. Include a separator, just in case there is more than one possible value for XYZ:
proc sql;
select distinct xyz into : t separated by ' ' from Prq;
quit;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.