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;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.