Hi everyone,
In the example below it makes a difference whether a macro variable is defined using CALL SYMPUT (here: &ab.) or %LET (here: &ab2.).
Why is that and are there any other noteworthy differences?
Thanks!
%Let a=1;
%Let b=2;
Data _null_;
Call Symput ('ab','%Eval(&a.+&b.)');
Run;
%Let ab2=%Eval(&a.+&b.);
%Put &ab.;
%Put &ab2.;
%Let b=0;
%Put &ab.;
%Put &ab2.;
Please refer to the below link, it has good information about the question you asked
http://support.sas.com/resources/papers/proceedings10/028-2010.pdf
Thanks,
Jagadish
Please refer to the below link, it has good information about the question you asked
http://support.sas.com/resources/papers/proceedings10/028-2010.pdf
Thanks,
Jagadish
It's the VALUE. They are not the same. Add this to see the value.
Thank you very much!
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.