BookmarkSubscribeRSS Feed
Thokozani
Calcite | Level 5

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

 

 

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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;
Thokozani
Calcite | Level 5
Hi,

Please find my proc tabulate code.I want to add another column that will*
sum=Employee Total+Total Third Party*

PROC TABULATE
DATA=REPORT.SEA_OPCO FORMAT=10. ;
VAR total_employee2 total_employee3 x;
CLASS employee_person_type3 / DESCENDING MISSING;
CLASS Operation employee_person_type2/ MISSING s=[background=yellow];
class dummy / MISSING s=[background=black];
TABLE
/* ROW Statement */
Operation = '' all = ' Region Total',
/* COLUMN Statement */
Employee_Person_Type3='' *(total_employee3=' ' * Sum={LABEL=" "} )
all = ' Employee Total' *(total_employee3=' ' * Sum={LABEL=" "} )
dummy=' '*x=''*sum=''*{style={background=black }}
Employee_Person_Type2='' *(total_employee2=' ' * Sum={LABEL=" "} )
all = ' Total Third Party' *(total_employee2=' ' * Sum={LABEL=" "}
)
/ misstext='0' box=[label="OpCo" style=[background=yellow]];
keyword all /s=[background=yellow];

RUN;


##- Please type your reply above this line. Simple formatting, no
attachments. -##
Reeza
Super User

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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1115 views
  • 0 likes
  • 3 in conversation