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

Hi I am trying to get a feel for my data and the number of unique observations

I am wanting to

  1. count the number of firms (the variable is called cusip).
  2. count the number of firm names (the variable is called firms)

Any help is appreciated

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Please try,

proc sql;

     select count(distinct cusip) as count_cusip, count(distinct firms) as count_firms from data;

quit;

Thanks,

jagadish

Thanks,
Jag

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

Please try,

proc sql;

     select count(distinct cusip) as count_cusip, count(distinct firms) as count_firms from data;

quit;

Thanks,

jagadish

Thanks,
Jag
Patrick
Opal | Level 21

PROC FREQ and PROC UNIVARIATE are two very useful procedures when it comes to data exploration.

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