Hello,
I would like to compare multiple character variable values let say c1,c2,c3 and c4
the result should be 1 if all the values are not equal.
The result should'nt be 1 if one of the variable is empty.
Thanks for the help!
OK, so a blank is not meant to establish an inequality. Then:
data want (drop=i word);
set have;
array c{4} $ c1-c4;
word=scan(catx(' ',of c{*}),1);
result='same';
do I=1 to dim(c) while (result='same');
if NOT(c{i}=word or c{i}='') then result='diff';
end;
run;
This strategy here is the same as my previous submission. Default result to 'same' until proven otherwise.
Show us what you have tried so far. Then we can help you help yourself.
data want(drop=count i); set have; array _v{*} c1 c2 c3 c4; count=0; do i=1 to dim(_v); count+(_v{1}=_v{i}); end; flag=ifc(count=dim(_v),'Same','Diff'); run;
This is what i tried so far.
Here's an approach that is coded to avoid the loop if there are missing values, and to stop stepping through the loop once a non-equality is encountered:
data want (drop=I);
set have;
array c{*} $ c1 c2 c3 c4;
if cmiss(of c{*})=0 then result='same';
else result='diff';
do I=2 to dim(c) while (result='same');
if c{i}^=c{i-1} then result='diff';
end;
run;
So if C1=C2 then the output should be?
Do you only have 4 or does this need to be expanded?
Untested but perhaps something like this.
Use CMISS() to check for missing and then loop through the data and check if each value is unique. The last value doesn't need to be checked.
data want;
set have;
array _c(4) $ c1-c4;
if cmiss(of c1-c4) = 0 then do i=1 to dim(_c)-1;
if whichc(_c(i) of _c(*)) >1 then do;
flag=1;
leave;
end;
end;
if flag ne 1 then results=1;
else flag=0;
run;
c1--c2--c3--c4--result
a--a--a--a--same
a--a--{empty}--a--same
a--b--a--a--not same
a--b--{empty}--a--not same
This is what I want.
Thanks
OK, so a blank is not meant to establish an inequality. Then:
data want (drop=i word);
set have;
array c{4} $ c1-c4;
word=scan(catx(' ',of c{*}),1);
result='same';
do I=1 to dim(c) while (result='same');
if NOT(c{i}=word or c{i}='') then result='diff';
end;
run;
This strategy here is the same as my previous submission. Default result to 'same' until proven otherwise.
awesome! thank you.
could you please explain this:
if NOT(c{i}=word or c{i}='') then result='diff';
thanks
The logical expression NOT(a or b) is the same as NOT(a) and NOT(b), so
if NOT(c{i}=word or c{i}='') then result='diff';
is the same as
if c{i}^=word and c{i}^=' ' then result='diff';
Since WORD is the first non-blank among c{1}-c{4}, this IF expression tests for whether there is inequality among non-blank values in your array.
Hi Mkeintz,
The following code for the comparison of multiple character variables was very helpful. Thank you. However, this code only picked up when there was only one word in the entry (for eg., in race variable: White, Black, Asian and so on), but it did not pick up races like African American/Black, Alaska Natives. Could you please help me with this? Thank you in advance!
data want (drop=i word);
set have;
array c{4} $ c1-c4;
word=scan(catx(' ',of c{*}),1);
result='same';
do I=1 to dim(c) while (result='same');
if NOT(c{i}=word or c{i}='') then result='diff';
end;
run;
Instead of using a blank as the separator in the CATX function, use some other character that is not in any of the values -say'!':
data want (drop=i word);
set have;
array c{4} $ c1-c4;
word=scan(catx('!',of c{*}),1);
result='same';
do I=1 to dim(c) while (result='same');
if NOT(c{i}=word or c{i}='') then result='diff';
end;
run;
Thank you Mkeintz!
Unfortunately, it did not work for my data. I received the following info in the log; could you please help me to figure this out. Thank you SO much!
data want (drop=i word);
set have;
array c{87} $ Race_171--Race_1787;
word=scan(catx('!',of c{*}),1);
result='same';
do I=1 to dim(c) while (result='same');
if NOT(c{i}=word or c{i}='') then result='diff';
end;
run;
INFO: Character variables have defaulted to a length of 200 at the places given by:
(Line):(Column). Truncation can result.
210:3 word
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.