Hi All,
%let m=delhi, 1;
data test;
m1=%scan(&var,1,%bquote(,));
proc print;
run;
I want that m1 takes value delhi in the data step. Please suggest.
Regards
SK
so you want m1 to get the value from the variabel delhi and not the value "delhi"?
Like this?
%let m=delhi, 1;
data test;
delhi = 'Aruba';
m1=%scan(&m,1);
proc print;
run;
why not just use scan?
m1=scan(&m",1,',');
![]()
Hi Fredrik,
It doesnt work, I could have used that but if you take a look at the macro parameter then it creates a new variable called delhi which is the first occurence in the macro 'm and something that is not desired.
Regards
SK
so you want m1 to get the value from the variabel delhi and not the value "delhi"?
Like this?
%let m=delhi, 1;
data test;
delhi = 'Aruba';
m1=%scan(&m,1);
proc print;
run;
perfect!
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.