BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DocMartin
Quartz | Level 8
I have a global variable called "switch", which by default is set to 'N'; If a certain condition occurs then I'd like switch be = 'Y'. The code I'm using always changes switch to 'Y', regardless of the condition. That's not right. Here's my code: data _NULL_; %let switch = N; if rand('UNIFORM') > 0.3 then do; %let switch = 'Y'; end; %put &switch; run; Any ideas? Thanks!
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

%LET statements are never part of a DATA step.  You might as well have coded:

 

%let switch = N;

%let switch = 'Y';

%put &switch;

data _NULL_;

if rand('UNIFORM') > 0.3 then do;

end;

run;

 

That reflects what your program is actually doing.  However, the good news is that there are interfaces between a DATA step and macro language.  You could instead code:

 

%let switch = N;

data _null_;

if rand('UNIFORM') > 0.3 then call symput('switch', 'Y');

run;

%put &switch;

 

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

Two problems: 1 you change it from N to 'Y' (why do you add quotes for Y?)

2 You use %let let in a datastep, when you should use call symput

 

What condition do you really want to use? Surely, not just randomly like shown in your code.

 

Art, CEO, AnalystFinder.com

DocMartin
Quartz | Level 8
The quotes around Y are a mistake. I wasn't aware (but now am!) that I can't use %let in the data step. So how would I use call symput to do what I intended? Thanks!
Astounding
PROC Star

%LET statements are never part of a DATA step.  You might as well have coded:

 

%let switch = N;

%let switch = 'Y';

%put &switch;

data _NULL_;

if rand('UNIFORM') > 0.3 then do;

end;

run;

 

That reflects what your program is actually doing.  However, the good news is that there are interfaces between a DATA step and macro language.  You could instead code:

 

%let switch = N;

data _null_;

if rand('UNIFORM') > 0.3 then call symput('switch', 'Y');

run;

%put &switch;

 

DocMartin
Quartz | Level 8
That works! Thanks.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1571 views
  • 0 likes
  • 3 in conversation