Hello;
I have a variable in a data called numbers and in the variable there are a set with numbers in it - lets say 1 to 9000.
I need to find any numbers that are not in the sequence - how do I do that?
Thanks
This was my idea then merge but is not working.
data verify;
set test;
do var = min(1) to max(9000); output;
end; drop min max; run;
data test1;
merge verify test; by number;
proc freq; data=test;
run;
This was my idea then merge but is not working.
data verify;
set test;
do var = min(1) to max(9000); output;
end; drop min max; run;
data test1;
merge verify test; by number;
proc freq; data=test;
run;
Your log is probably full of errors because that's not valid code. This should get you started:
*generate verification data set;
data verify;
flag=1;
do number= 1 to 9000;
output;
end;
run;
*use IN data set options to identify where a record is coming from or use flag;
data test;
merge verify (in=t1) test (in=t2);
by number;
missing=0;
if t1 and not t2 then missing=1;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.