hello
data have;
input secid $ NAME $ management_company $;
datalines;
1 Afund Sales
1 Afund xyz
2 Bfund Mary Acctng
2 bfund Sales
;
want
Sales 2
xyz 1
Mary Acctng 1
but I obtain this
this is the program that I use
proc sql;
create table want as
select distinct management_company, count(management_company) as count_name
from have;
quit;
"Group by management_company"
B.
"Group by management_company"
B.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.