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

Hello again!

I would like to ask you how to get from "have" to "wanna" base.

Have:

Company, Year,

A,2001

A,2002

A,2003

A,2004

B,2001

B,2002

B,2003

C,2001

C,2002

C,2003

C,2004

Wanna:

Company, Year,

A,2001

A,2002

A,2003

A,2004

C,2001

C,2002

C,2003

C,2004

I know the logic, but cannot really figure out the code...

I should assign e.g. item for every observation and delete each company which has item number <4

Thank you in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
select * from have group by company having count(distinct year)=4; 

Xia Keshan

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well, few ways to do it in SQL, heres one:

proc sql;

  create table want as

  select company,year

  from  (

          select  *

                  ,count(1) as tmp

          from    have

          group by company

        )

  where tmp=4;

quit;

slchen
Lapis Lazuli | Level 10

data have;
input Company $ Year;
cards;
A 2001
A 2002
A 2003
A 2004
B 2001
B 2002
B 2003
C 2001
C 2002
C 2003
C 2004
;
run;
proc sql;
select * from have group by company having count(*)=4;
quit;

Ksharp
Super User
select * from have group by company having count(distinct year)=4; 

Xia Keshan

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1095 views
  • 6 likes
  • 4 in conversation