Sure
data _null_;
length vars $ 20000;
do i=1 to 52-1;
do j=i+1 to 52;
vars = catx(' ', vars, cats('pair_', i, '_', j));
end;
end;
call symputx('vars', vars);
run;
data want(keep=itempos key pair:);
set have;
array c {*} col:;
array p {1326} $ 50 &vars.;
do i=1 to 52-1;
do j=i+1 to 52;
idx=sum(idx, 1);
if c[i]=c[j]=key then p[idx] = "same resp and both wrong";
else if c[i]=c[j] ne key then p[idx] = "same resp and both wrong";
else if i=key | j=key then p[idx] = "different resp and one of them correct";
else p[idx] = "different resp and both wrong";
end;
end;
run;
oops, here is the file.
Seems like you reposted a duplicate of https://communities.sas.com/t5/SAS-Programming/How-to-write-SAS-code-about-this-combination/m-p/6256...
My apologies if my solution didn't work for you.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.