i think you are missing closing parenthesis and &
%let country =USA;
%nrstr(%if &country=USA %then %doSmiley )
%put the country is &country.; /*quotes are not needed in a macro statement that executes at compile time*/
Endrsubmit;
%mend test;
%test;
Make it work locally and then add back your RSUBMIT blocks. The RSUBMIT are not the issue here.
And formatting your code makes it much easier to read and follow.
%macro test;
%let country =USA;
%if &country=USA %then
%put "the country is &country.";
%else
%put "Condition FAIL";
%mend test;
%test;
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.