BookmarkSubscribeRSS Feed
Mikkel_madsen
Obsidian | Level 7

Hi,

 

I want to create a count variable. I have the following dataset:

 

ID         GPS         Open          Store

1          4321          Y                1

1          3421          Y                2

1          2321          N               1

2          1235          Y               4

2          1242          N               2

3          1235          N               2

 

The new dataset should look like:

 

ID         GPS         Open          Store      Count

1          4321          Y                1             3

1          3421          Y                2             3

1          2321          N               1              3

2          1235          Y               4              2

2          1242          N               2              2

3          1235          N               2              1

 

So the new variable 'count' counts the number of observations with the same ID.

 

Thanks! 

1 REPLY 1
ed_sas_member
Meteorite | Level 14

Hi @Mikkel_madsen 

Please try this:

proc sql;
	create table want as
	select *, Count(id) as count
	from have
	group by id;
quit;

Best,

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

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 642 views
  • 0 likes
  • 2 in conversation