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;

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
  • 3 replies
  • 1149 views
  • 0 likes
  • 4 in conversation