BookmarkSubscribeRSS Feed
Dan_S
Calcite | Level 5
I was having some problems getting a SP to work with a Boolean Parameter. I have made up a mock example to simplify my code. It seem that I always return a=1 and b=1 whether my boolean value is true or false? here is my code. Thank you in advance for your help. Dan
%Global b1;

data fun;
a = 0;
b = 0;
data fun;
set fun;
if &b1=true then
do;
a = 1;
b = 1;
end;
proc print;
run;
1 REPLY 1
Olivier
Pyrite | Level 9
I would think that it's rather a macro logic problem than a stored process problem.
When you write a SAS statement like the IF statement, it is not processed by the macro facility.
Hence what you write is either :

IF true = true THEN DO ; etc.

or

IF false = true THEN DO ; etc.

From a SAS (and not macro) point of view, this means you are comparing values for variables named TRUE or FALSE. Not that you're comparing text strings "TRUE" or "FALSE", which would require quotes around the value itself.
As the variables TRUE and FALSE don't exist in your dataset, they are created with missing values (you should see them in the printed output). Your condition, in every case, ends up as :
IF . = . THEN ...
which is always true.

I would transform your program into :

%Global b1;
data fun;
a = 0;
b = 0;
data fun;
set fun;
if "%UPCASE(&b1)"="TRUE" then
do;
a = 1;
b = 1;
end;
proc print;
run;

another solution is to use the macro-IF, for which everything is just plain text and then, no quotes needed anywhere.

%Global b1;

data fun;
a = 0;
b = 0;
data fun;
set fun;
%if &b1=true %then
%do;
a = 1;
b = 1;
%end;
proc print;
run;

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 1184 views
  • 0 likes
  • 2 in conversation