The following query will give counts of each country_cd.But how to get the total of all counts?
proc sql;
select count(*) from table a
group by country_cd;
quit;
if there are 10 country_cd we will get 10 counts for each country.But how to get grand total of all 10 counts?
You can get the the total counts by not using the GROUP BY clause:
select count(*) from table a;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest 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.
Browse our catalog!