%macro new;
options mprint mlogic;
OPTIONS COMAMID = TCP;
%LET _host_user=xxxx;
%let _host_pass=xxxx;
%LET Rsysv = rysa 7280;
signon Rsysv user="&_host_user" password="&_host_pass" noscript;
rsubmit;
data new;
x=5;
run;
data _null_;
call symputx('y',2);
run;
%if &y=2 %then %do;
proc download data=new;
run;
%end;
endrsubmit;
%mend;
%new
how can i use below condition correctly in remote session
%if &y=2 %then %do;
You should enter the %IF into a internal macro submitted to the remote host:
%macro new;
options mprint mlogic;
OPTIONS COMAMID = TCP;
%LET _host_user=xxxx;
%let _host_pass=xxxx;
%LET Rsysv = rysa 7280;
signon Rsysv user="&_host_user" password="&_host_pass" noscript;
rsubmit;
data new;
x=5;
run;
data _null_;
call symputx('y',2);
run;
%macro check(arg);
%if &arg=2 %then %do;
proc download data=new;
run;
%end;
%mend check;
%check(&y);
endrsubmit;
%mend;
%new;
You should enter the %IF into a internal macro submitted to the remote host:
%macro new;
options mprint mlogic;
OPTIONS COMAMID = TCP;
%LET _host_user=xxxx;
%let _host_pass=xxxx;
%LET Rsysv = rysa 7280;
signon Rsysv user="&_host_user" password="&_host_pass" noscript;
rsubmit;
data new;
x=5;
run;
data _null_;
call symputx('y',2);
run;
%macro check(arg);
%if &arg=2 %then %do;
proc download data=new;
run;
%end;
%mend check;
%check(&y);
endrsubmit;
%mend;
%new;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.