I want to distribute equal amount of bonus from bonus table to all the employee of emp table.
data bonus;
input deptid $ bonus;
datalines;
HR 4000
Fin 3000
;
run;
data emp;
input deptid $ empid;
datalines;
HR 1
HR 2
HR 3
HR 4
Fin 1
Fin 2
Fin 3
;
run;
If you sort both of your data sets by DEPTID, then this works:
proc freq data=emp;
table deptid/noprint out=_counts_;
run;
data want;
merge emp bonus _counts_(drop=percent);
by deptid;
indiv_bonus=bonus/count;
run;
If you sort both of your data sets by DEPTID, then this works:
proc freq data=emp;
table deptid/noprint out=_counts_;
run;
data want;
merge emp bonus _counts_(drop=percent);
by deptid;
indiv_bonus=bonus/count;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.