BookmarkSubscribeRSS Feed
Sharathr
Obsidian | Level 7
Hi ,

The below code is throwing an error even after using an nrstr to convert the if statement as text to be used in remote server. Kindly let me know how to make this work
%macro test;
Rsubmit;
%let country =USA;
%nrstr(%if country=USA %then %do;)
%put "the country is &country.";
Endrsubmit;
%mend test;
%test;
3 REPLIES 3
novinosrin
Tourmaline | Level 20

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;

Reeza
Super User

Make it work locally and then add back your RSUBMIT blocks. The RSUBMIT are not the issue here. 

Reeza
Super User

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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 4142 views
  • 0 likes
  • 3 in conversation