BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Danglytics
Calcite | Level 5


Hi,

I have a variable set with variables q1_0_on, q1_0_ab, q1_1_on, q1_1_ab ... etc. all the way to q1_12_on, q1_12_ab.

Essentially what i'd like to do is to recode it into a different variable with a scale (1,0,-1) with an array.

q1_0 = 0;

if q1_0_on=1 and q1_0_ab=0 then q1_0=1;

if q1_0_on=0 and q1_0_ab=1 then q1_0=-1 ;

i could duplicate the code above 12 times but i was hoping there's an easy way with an array.

Thanks for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Looks like you need 3 arrays.

Array Q_on q1_0_on q1_1_on (continue adding until q1_12_on;

Array Q_ab q1_0_ab q1_1_ab  (ditto);

array Q q1_0 q1_1 ... q1_12;

do i = 1 to dim (Q);

     Q = 0;

     if Q_on=1 and Q_ab=0 then Q=1;

     if Q_on=0 and Q_ab=1 then Q=-1;

end;

drop i;

View solution in original post

1 REPLY 1
ballardw
Super User

Looks like you need 3 arrays.

Array Q_on q1_0_on q1_1_on (continue adding until q1_12_on;

Array Q_ab q1_0_ab q1_1_ab  (ditto);

array Q q1_0 q1_1 ... q1_12;

do i = 1 to dim (Q);

     Q = 0;

     if Q_on=1 and Q_ab=0 then Q=1;

     if Q_on=0 and Q_ab=1 then Q=-1;

end;

drop i;

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
  • 1 reply
  • 1203 views
  • 0 likes
  • 2 in conversation