BookmarkSubscribeRSS Feed
NonSleeper
Quartz | Level 8

I have several variables, let's say V1 to V3, each of them containing values of 1 or 0.

How to write a statement for an array of these variables, so that a new variable (e.g., V4) will receive value of 1 if any among V1-V3 is 1; and 0 otherwise (i.e., all among V1-V3 are 0s)?

2 REPLIES 2
stat_sas
Ammonite | Level 13

data want;

set have;

if sum(of v1-v3)>0 then v4=1;

else v4=0;

run;

ballardw
Super User

v4= max(of v1-v3);

would also work.

What would you want if all of v1 - v3 are missing though?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1403 views
  • 0 likes
  • 3 in conversation