BookmarkSubscribeRSS Feed
bersys02
Calcite | Level 5

Hello,

 

I am trying to find out how many ID's/observations/persons are in different tables or variables ? For instance, if I want to find how the number of people who has multiple nationalities or more than 1. How can I code this ?

 

Thank you. 

3 REPLIES 3
tarheel13
Rhodochrosite | Level 12
Post some data if you can. Hard to help you without seeing it.
andreas_lds
Jade | Level 19

Hardly possible to suggest something useful without more information. So please post example data in usable form (a data step using datalines).

Ksharp
Super User
proc sql;
select id from a
intersect
select id from b
intersect
select id from c
............
;
quit;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of 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
  • 3 replies
  • 820 views
  • 0 likes
  • 4 in conversation