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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.