BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8

data ek;

x1=5;

x2=6;

x3=7;

x4=(x1|x2|x3);

run;

x4=1 in output

3 REPLIES 3
joehinson
Calcite | Level 5

x4=(x1|x2|x3 ) is the same as x4=(x1 OR x2 OR x3)

which is TRUE and therefore 1 (because it is an assignment statement and will always be true).

Furthermore, any number OR'ed with another number   would give 1, except (0 OR 0) which would give 0.

So, (34 OR 987765)=1

Reeza
Super User

It won't always be true, what if all are 0?

In SAS false is 0 and anything else is true.

data ek;

x1=0;

x2=0;

x3=0;

x4=(x1|x2|x3);

put x4;

run;

Astounding
PROC Star

Also, don't forget missing values are also false.

x1=.;

x2=.A;

x3=.Z;

x4=(x1|x2|x3);

x4 will be 0.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 3 replies
  • 1582 views
  • 5 likes
  • 4 in conversation