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!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.