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

Hi, Does anyone know how to count the number of different id for each year.

I have a data sample from 1990-2010 which contains time series data of different id. The number of different id is different per year.

proc sql;

    create table dataout as

    select

    count(distinct id)  

    from

    datain;

quit;

codes above work for the whole data set but not per year. Thanks in advance

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Reeza
Super User

Add a group by year clause in.

thdang
Calcite | Level 5

thanks Reeza

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

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1779 views
  • 0 likes
  • 2 in conversation