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

Hi Everyone,

  I have the Data in the below structure, I just want to check A variable numbers in B variable List. If the A variable Number not found in B variable I need that non matching record in output.

SnoAB
111,2,3,4,5,6,7,8,9,10
221,2,3,4,5,6,7,8,9,10
341,2,3,4,5,6,7,8,9,10
451,2,3,4,5,6,7,8,9,10
51,21,2,3,4,5,6,7,8,9,10
62,61,2,3,4,5,6,7,8,9,10
73,81,2,3,4,5,6,7,8,9,10
80,111,2,3,4,5,6,7,8,9,10
912,8,181,2,3,4,5,6,7,8,9,10

Note;- Both variables in Character.


Here i am supposed to get 8th and 9th Observation in output.Please help me on this.

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

A simple datastep approach :

data have;

length A B $32;

input Sno A B;

datalines;

1 1 1,2,3,4,5,6,7,8,9,10

2 2 1,2,3,4,5,6,7,8,9,10

3 4 1,2,3,4,5,6,7,8,9,10

4 5 1,2,3,4,5,6,7,8,9,10

5 1,2 1,2,3,4,5,6,7,8,9,10

6 2,6 1,2,3,4,5,6,7,8,9,10

7 3,8 1,2,3,4,5,6,7,8,9,10

8 0,11 1,2,3,4,5,6,7,8,9,10

9 12,8,18 1,2,3,4,5,6,7,8,9,10

;

data absent;

length missNumber $12;

set have;

do i = 1 to countw(A);

    missNumber = scan(A, i, ",");

    if findw(B, missNumber, ",", "t") = 0 then do;

        output;

        leave; /* Remove this statement to get all missing numbers */

        end;

    end;

keep Sno missNumber;

run;

proc print data=absent noobs; run;

PG

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

A simple datastep approach :

data have;

length A B $32;

input Sno A B;

datalines;

1 1 1,2,3,4,5,6,7,8,9,10

2 2 1,2,3,4,5,6,7,8,9,10

3 4 1,2,3,4,5,6,7,8,9,10

4 5 1,2,3,4,5,6,7,8,9,10

5 1,2 1,2,3,4,5,6,7,8,9,10

6 2,6 1,2,3,4,5,6,7,8,9,10

7 3,8 1,2,3,4,5,6,7,8,9,10

8 0,11 1,2,3,4,5,6,7,8,9,10

9 12,8,18 1,2,3,4,5,6,7,8,9,10

;

data absent;

length missNumber $12;

set have;

do i = 1 to countw(A);

    missNumber = scan(A, i, ",");

    if findw(B, missNumber, ",", "t") = 0 then do;

        output;

        leave; /* Remove this statement to get all missing numbers */

        end;

    end;

keep Sno missNumber;

run;

proc print data=absent noobs; run;

PG

PG
Daya87
Calcite | Level 5

Thanks a lot, It's working Fine.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 910 views
  • 0 likes
  • 2 in conversation