Hi All,
Can you please assist.
I looking for a way to generate a report as per attached spreadsheet. I want to add total employee + total third party.
Please find a sample.xlsx file.
Regards,
Thokozani
Hi,
If you would like accurate answers, post test data in the form of a datastep so we have something to work with. Personally I tend to code these use SQL:
proc sql; create table WANT as select COUNTRY, sum(PERM), sum(CONTRACT), sum(TEMP), count(EMPLOYEES), count(AGENCY), count(CONSULTANTS), count(AGENCY)+count(CONSULTANTS) from HAVE group by COUNTRY union all select "Region Total", sum(PERM), sum(CONTRACT), sum(TEMP), count(EMPLOYEES), count(AGENCY), count(CONSULTANTS), count(AGENCY)+count(CONSULTANTS) from HAVE; quit;
If I understand correctly you can't calculate new variables in proc tabulate. You can use proc report for calculations or a data step.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.